diff options
author | Matt Selsky <selsky@columbia.edu> | 2014-12-15 18:47:48 +0100 |
---|---|---|
committer | Gervase Markham <gerv@gerv.net> | 2014-12-15 18:47:48 +0100 |
commit | adc3c7a7b51bd32732d1f65aa9da180c1e6e15d8 (patch) | |
tree | 5c2a4825b7f0aac15556dfe4ee29129cb238c4db /editparams.cgi | |
parent | f264250ff423e53d44fee297b5648f437c910d02 (diff) | |
download | bugzilla-adc3c7a7b51bd32732d1f65aa9da180c1e6e15d8.tar.gz bugzilla-adc3c7a7b51bd32732d1f65aa9da180c1e6e15d8.tar.xz |
Bug 950486: Move the webdotbase and font_file parameters from data/params into localconfig (and kill the Graphs panel). r=gerv, a=glob.
Diffstat (limited to 'editparams.cgi')
-rwxr-xr-x | editparams.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editparams.cgi b/editparams.cgi index ae569c2eb..5484f5fdc 100755 --- a/editparams.cgi +++ b/editparams.cgi @@ -89,7 +89,7 @@ if ($action eq 'save' && $current_module) { } # Stop complaining if the URL has no trailing slash. # XXX - This hack can go away once bug 303662 is implemented. - if ($name =~ /(?<!webdot)base$/) { + if ($name =~ /base$/) { $value = "$value/" if ($value && $value !~ m#/$#); } } |