From 5b1ced0a846fecdef1b595ebb562a008b161b810 Mon Sep 17 00:00:00 2001 From: Jamie Cameron Date: Mon, 16 Feb 2009 02:40:06 +0000 Subject: [PATCH] Fix layout --- fetchmail/edit_cron.cgi | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/fetchmail/edit_cron.cgi b/fetchmail/edit_cron.cgi index d1d3f4157..fa1bf4b6f 100755 --- a/fetchmail/edit_cron.cgi +++ b/fetchmail/edit_cron.cgi @@ -62,13 +62,12 @@ print &ui_table_row($text{'cron_enabled'}, &ui_radio("enabled", $job ? 1 : 0, [ [ 1, $text{'yes'} ], [ 0, $text{'no'} ] ])); -print " \n"; $job ||= { 'special' => 'hourly' }; -&cron::show_times_input($job); -print "
\n"; +print &ui_table_row(undef, + &capture_function_output(\&cron::show_times_input, $job)); -print "\n"; -print "\n"; +print &ui_table_end(); +print &ui_form_end([ [ undef, $text{'save'} ] ]); &ui_print_footer("", $text{'index_return'});