Skip to content

Commit

Permalink
Add a missing semicolon to a web config validation warning
Browse files Browse the repository at this point in the history
    This Set() didn't get a semicolon because of branch lineage.
  • Loading branch information
sartak committed Jun 9, 2011
1 parent 7655037 commit 0c7607b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/RT/Interface/Web.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1094,7 +1094,7 @@ sub ValidateWebConfig {
}

if ($ENV{SCRIPT_NAME} ne RT->Config->Get('WebPath')) {
$RT::Logger->warn("The actual SCRIPT_NAME ($ENV{SCRIPT_NAME}) does NOT match the configured WebPath ($RT::WebPath). Perhaps you should Set(\$WebPath, '$ENV{SCRIPT_NAME}') in RT_SiteConfig.pm, otherwise your internal links may be broken.");
$RT::Logger->warn("The actual SCRIPT_NAME ($ENV{SCRIPT_NAME}) does NOT match the configured WebPath ($RT::WebPath). Perhaps you should Set(\$WebPath, '$ENV{SCRIPT_NAME}'); in RT_SiteConfig.pm, otherwise your internal links may be broken.");
}
}

Expand Down

0 comments on commit 0c7607b

Please sign in to comment.