Skip to content

Commit

Permalink
Merge pull request #211 from peloy/fix_issue_210
Browse files Browse the repository at this point in the history
Fix issue 210
  • Loading branch information
krkeegan committed Jun 15, 2013
2 parents 06cc25f + 0574d43 commit 71ee50b
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions web/bin/ListManager.pl
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@
my @Category; # array containing category name, in file order
# this allow to get printed list in store aisle.
my $AtShopStatus = "";
my $Version = '$Revision$';
$Version =~ s/\$//g;
my $NumColumns;
my $ColumnsWidth;

Expand Down Expand Up @@ -490,8 +488,7 @@
$html .= qq[</body>];
$html .= qq[</html>];

return $html;

return &html_page('', $html);
#}}}

# ============== Subroutine ================
Expand All @@ -501,8 +498,8 @@ sub DisplayAbout {
$html .= qq [
<CENTER>
<H2>ListManager</H2>
<p>$Version</p>
<P>Managing $PrettyListName<p>
<p>Version '$Version'</p>
<P>Managing list '$PrettyListName'<p>
<br><br><br>
Gaetan Lord
<br>
Expand Down Expand Up @@ -1301,7 +1298,7 @@ =head1 Credits and contact information
# ======================== POD END ==================================
];

open DOC, "echo \"$POD\" | pod2html 2>/dev/null|";
open DOC, "echo \"$POD\" | pod2html --cachedir=$config_parms{data_dir}/cache --flush 2>/dev/null |";
my $content = 0;
while (<DOC>) {
$content = 1 if /<body/;
Expand Down

0 comments on commit 71ee50b

Please sign in to comment.