From: Salve J. N. <sj...@us...> - 2004-11-25 17:34:00
|
Update of /cvsroot/openinteract/OpenInteract2/extra_packages/wiki/OpenInteract2/Action In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16661/extra_packages/wiki/OpenInteract2/Action Modified Files: Wiki.pm Log Message: Fix a comparison bug Index: Wiki.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/extra_packages/wiki/OpenInteract2/Action/Wiki.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Wiki.pm 3 Jun 2004 20:32:59 -0000 1.2 --- Wiki.pm 25 Nov 2004 17:33:50 -0000 1.3 *************** *** 203,207 **** ( $wiki_action, $node ) = @action_items; } ! elsif ( $num_items = 1 ) { if ( $ACTIONS{ $action_items[0] } ) { ( $wiki_action, $node ) = ( $action_items[0], undef ); --- 203,207 ---- ( $wiki_action, $node ) = @action_items; } ! elsif ( $num_items == 1 ) { if ( $ACTIONS{ $action_items[0] } ) { ( $wiki_action, $node ) = ( $action_items[0], undef ); |