From: Stephen L Johnson Date: Wed, 20 Dec 2000 21:51:43 +0000 (+0000) Subject: fixed syntax problem with $WWW_PROB_ACTIONBAR generation code X-Git-Tag: spong-2_7_2~21 X-Git-Url: http://git.etc.gen.nz/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f06cb6fc78617a42fc9104647dee5efd7e427e1c;p=spong.git fixed syntax problem with $WWW_PROB_ACTIONBAR generation code --- diff --git a/src/lib/Spong/Host.pm b/src/lib/Spong/Host.pm index 49fc5bf..123c4af 100755 --- a/src/lib/Spong/Host.pm +++ b/src/lib/Spong/Host.pm @@ -342,10 +342,10 @@ sub display_problem_html { } if ( $main::WWW_PROB_ACTIONBAR ) { - my($text) = eval '"' . $main::WWW_ACTIONBAR_CUSTOM . '"'; + my($text) = eval '"' . $main::WWW_PROB_ACTIONBAR . '"'; if ($@) { &main::error("add_action_bar: $@"); - &main::error($main::WWW_ACTIONBAR_CUSTOM); + &main::error($main::WWW_PROB_ACTIONBAR); } else { print "$spacer $text
\n"; }