[Rt-commit] rt branch, 4.0.1-releng, updated. rt-4.0.1rc1-44-g0c7607b
Shawn Moore
sartak at bestpractical.com
Thu Jun 9 18:08:14 EDT 2011
The branch, 4.0.1-releng has been updated
via 0c7607b6b773b4c7e15a59e2a727615f0a297f9b (commit)
from 7655037a4505d6670e94d40c605034239e4e1db9 (commit)
Summary of changes:
lib/RT/Interface/Web.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
- Log -----------------------------------------------------------------
commit 0c7607b6b773b4c7e15a59e2a727615f0a297f9b
Author: Shawn M Moore <sartak at bestpractical.com>
Date: Thu Jun 9 18:03:36 2011 -0400
Add a missing semicolon to a web config validation warning
This Set() didn't get a semicolon because of branch lineage.
diff --git a/lib/RT/Interface/Web.pm b/lib/RT/Interface/Web.pm
index 612a2cc..8897f9f 100644
--- a/lib/RT/Interface/Web.pm
+++ b/lib/RT/Interface/Web.pm
@@ -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.");
}
}
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list