]> git.etc.gen.nz Git - spong.git/commitdiff
fixed syntax problem with $WWW_PROB_ACTIONBAR generation code
authorStephen L Johnson <sjohnson@monsters.org>
Wed, 20 Dec 2000 21:51:43 +0000 (21:51 +0000)
committerStephen L Johnson <sjohnson@monsters.org>
Wed, 20 Dec 2000 21:51:43 +0000 (21:51 +0000)
src/lib/Spong/Host.pm

index 49fc5bf52c811a7b3b911fdf1df1eb5f8a93f9d3..123c4af89351ec4aeb32e0511853b74df50dc6d2 100755 (executable)
@@ -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<br>\n";
       }