From: Matthew Vernon Date: Sun, 5 Jan 2014 07:27:57 +0000 (+0000) Subject: Add comments to make the two mod-screen functions more obvious X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~webstump/git?p=modbot-ulm.git;a=commitdiff_plain;h=da0fbc8cab1d9b8feda9a8920d7621c218612cbe Add comments to make the two mod-screen functions more obvious Previously they were just main moderation screen, and main moderation screen - old version, which isn't very helpful. In fact, one is the single-article version (shows the entire post), and one the multiple-articles version (shows a few lines of up to 40 posts). --- diff --git a/webstump/scripts/html_output.pl b/webstump/scripts/html_output.pl index 47b3c5a..4b0e576 100644 --- a/webstump/scripts/html_output.pl +++ b/webstump/scripts/html_output.pl @@ -193,7 +193,7 @@ of this installation.
&end_html; } -# main moderation page -- old version +# main moderation page -- single-article version sub html_moderate_article { my $newsgroup = &required_parameter( 'newsgroup' ); my $moderator = $request{'moderator'}; @@ -478,7 +478,7 @@ sub get_queue_list ($) { return ($dir, @articles); } -# main moderation page +# main moderation page -- multiple-articles version sub html_moderation_screen { my $newsgroup = &required_parameter( 'newsgroup' ); my $moderator = $request{'moderator'};