diff options
author | Byron Jones <glob@mozilla.com> | 2014-05-22 09:17:30 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2014-05-22 09:17:30 +0200 |
commit | 0e44b5e51954470023eda053e3a3e5466d0e94ae (patch) | |
tree | 40067b2b83bd2a47dab81de30c5a85b7ecd96728 /Bugzilla | |
parent | 7f29dd34a78737967912f7c7156451facde7051d (diff) | |
download | bugzilla-0e44b5e51954470023eda053e3a3e5466d0e94ae.tar.gz bugzilla-0e44b5e51954470023eda053e3a3e5466d0e94ae.tar.xz |
add missing mod_perl fix for bug 977969
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Template.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm index d367c47bb..d36ffd473 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -511,6 +511,7 @@ sub _concatenate_css { write_file($file, $content); } + $file =~ s/^\Q$cgi_path\E\///; return mtime_filter($file); } |