diff --unified bin.old/editaction bin/editaction --- bin.old/editaction 2002-12-31 04:44:49.000000000 -0800 +++ bin/editaction 2002-12-31 04:44:57.000000000 -0800 @@ -44,7 +44,6 @@ my $breakLock = $query->param( 'breaklock' ) || ""; my $onlyWikiName = $query->param( 'onlywikiname' ) || ""; - my $tmpl = ""; my $text = ""; my $meta = ""; my $extra = ""; @@ -95,7 +94,7 @@ if( $TWiki::doLogTopicEdit ) { # write log entry - &TWiki::Store::writeLog( "editaction", "$webName.$topic" ); + &TWiki::Store::writeLog( "editaction", "$webName.$topic", "" ); } $tmpl = &TWiki::handleCommonTags( $tmpl, $topic ); @@ -136,8 +135,10 @@ my $state = $action->state(); my $openselect; my $closedselect; - $openselect = "SELECTED" if ( $state eq "open" ); - $closedselect = "SELECTED" if ( $state eq "closed" ); +# $openselect = "SELECTED" if ( $state eq "open" ); +# $closedselect = "SELECTED" if ( $state eq "closed" ); + $openselect = ( $state eq "open" ) ? "SELECTED" : ""; + $closedselect = ( $state eq "closed" ) ? "SELECTED" : ""; my $an = $action->actionNumber(); my $ebw = TWiki::Prefs::getPreferencesValue( 'ACTIONTRACKERPLUGIN_EDITBOXWIDTH'); diff --unified bin.old/previewaction bin/previewaction --- bin.old/previewaction 2002-07-21 16:05:44.000000000 -0700 +++ bin/previewaction 2002-12-31 04:55:15.000000000 -0800 @@ -124,7 +124,7 @@ $desc =~ s/\r?\n/
/sgo; $text = $query->param( "pretext" ) || ""; - $text .= "%ACTION{ who=\"$who\" due=\"$due\" state=\"$state\" }% $desc\n"; + $text .= "\n%ACTION{ who=\"$who\" due=\"$due\" state=\"$state\" }% $desc\n"; $text .= $query->param( "posttext" ); $ptext = $text;