]> mj.ucw.cz Git - pciids.git/commitdiff
Default auto-notification to history
authorMichal Vaner <vorner@ucw.cz>
Fri, 10 Oct 2008 06:07:23 +0000 (08:07 +0200)
committerMichal Vaner <vorner@ucw.cz>
Fri, 10 Oct 2008 06:07:23 +0000 (08:07 +0200)
PciIds/Html/Changes.pm
scripts/mailbot

index 658db0fafcc1a3b1ec3b057d100c20ae29ba0b58..0230a8e11ee36ce89016e9263922a89c9d08f99a 100644 (file)
@@ -100,7 +100,7 @@ sub newItemSubmit( $$$$ ) {
                        return genNewItemForm( $req, $args, $auth, $tables, $result, $data );
                }
                notify( $tables, $data->{'address'}->parent()->get(), $comName, 2, 0 );#Notify the parent (parent gets new items)
-               $tables->submitNotification( $auth->{'authid'}, $data->{'address'}->get(), { 'recursive' => 0, 'notification' => 1, 'way' => 0 } ) if( defined $data->{'subscribe'} && $data->{'subscribe'} eq 'subscribe' );
+               $tables->submitNotification( $auth->{'authid'}, $data->{'address'}->get(), { 'recursive' => 0, 'notification' => 0, 'way' => 0 } ) if( defined $data->{'subscribe'} && $data->{'subscribe'} eq 'subscribe' );
                tulog( $auth->{'authid'}, "Item created ".$data->{'address'}->get()." ".logEscape( $data->{'name'} )." ".logEscape( $data->{'note'} )." ".logEscape( $data->{'discussion'} )." $comName" );
                return HTTPRedirect( $req, '/read/'.$data->{'address'}->get().'?action=list' );
        } else {
index 4c7712b6bb43ae9c08e75594b7a915d076f315bf..1cbd2e0c90ee847baae7899319268fd7fce24d16 100755 (executable)
@@ -79,7 +79,7 @@ sub submitItem( $$$$$ ) {
        tlog( "mailbot: History created $hid $id ".logEscape( $name )." ".logEscape( $description )." ".logEscape( $text ) );
        notify( $tables, $id, $hid, $created ? 2 : 1, $created ? 0 : 1 );
        if( !$tables->notifExists( $author, $id ) ) {
-               $tables->submitNotification( $author, $id, { 'recursive' => 0, 'notification' => 1, 'way' => 0 } );
+               $tables->submitNotification( $author, $id, { 'recursive' => 0, 'notification' => 0, 'way' => 0 } );
        }
 }