From f06cb6fc78617a42fc9104647dee5efd7e427e1c Mon Sep 17 00:00:00 2001 From: Stephen L Johnson Date: Wed, 20 Dec 2000 21:51:43 +0000 Subject: [PATCH] fixed syntax problem with $WWW_PROB_ACTIONBAR generation code --- src/lib/Spong/Host.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"; } -- 2.30.2