From fd857573ee04282c0963c714de987f340d98a2a0 Mon Sep 17 00:00:00 2001 From: "Kay Marquardt (Gnadelwartz)" Date: Fri, 9 Jun 2017 13:46:47 +0200 Subject: [PATCH] index.cgi: ucfirst listname, maito:listname --- majordomo/index.cgi | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/majordomo/index.cgi b/majordomo/index.cgi index f4d861030..65a4155de 100755 --- a/majordomo/index.cgi +++ b/majordomo/index.cgi @@ -56,7 +56,6 @@ if ($access{'create'}) { if (@lists) { # table header local @hcols, @tds; - push(@hcols, "", ""); push(@hcols, $text{'index_name'}, $text{'index_info'}, $text{'index_mail'}, $text{'index_moderated'}, $text{'index_count'}); push(@tds, "width=5" ,"width=100" ); push(@tds, "", "", "width=100", "", ""); @@ -66,14 +65,15 @@ if (@lists) { local @cols,@list,@conf; $list = &get_list( $l , &get_config()); $conf = &get_list_config($list->{'config'}); - push(@cols, "",""); - push(@cols, "". &html_escape($l) ."" ); + push(@cols, "     ". + &html_escape(ucfirst($l)) ."" ); open(INFO, $list->{'info'}); local $info=; $info= if ( $info =~ !/^\[Last updated on:/); push(@cols, "".$info."" ."  edit"); close(INFO); - push(@cols, "". &find_value('reply_to', $conf) . + local $m=&find_value('reply_to', $conf); + push(@cols, "$m". "  edit"); push(@cols, "
". $text{&find_value('moderate', $conf)} . "" ."  edit
");