diff --git a/modules/weblog-4.pl b/modules/weblog-4.pl index 170b807f..8486f299 100644 --- a/modules/weblog-4.pl +++ b/modules/weblog-4.pl @@ -16,7 +16,7 @@ # 59 Temple Place, Suite 330 # Boston, MA 02111-1307 USA -$ModulesDescription .= '
$Id: weblog-4.pl,v 1.10 2007/02/20 00:14:30 as Exp $
'; +$ModulesDescription .= '$Id: weblog-4.pl,v 1.11 2007/02/20 00:22:51 as Exp $
'; push(@MyInitVariables, sub { $SearchFreeTextTagUrl = $ScriptName . '?action=browse;tag=1;id='; @@ -62,11 +62,13 @@ sub DoCategories { GetFormStart(undef, 'get', 'cat'); my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) = gmtime(); my $today = sprintf("%d-%02d-%02d", $year + 1900, $mon + 1, $mday); + my $go = T('Go!'); print $q->p(T('Title: '), qq{}, GetHiddenValue('action', 'new')); - print $q->p(T('Tags: '), $q->textfield('tags')); - print $q->p($q->submit(T('Go!'))); + print $q->p(T('Tags: '), + qq{}); + print $q->p(qq{})); print $q->end_form, $q->end_div(); PrintFooter(); }