summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorgerv%gerv.net <>2002-09-18 16:20:12 +0200
committergerv%gerv.net <>2002-09-18 16:20:12 +0200
commit1809e275fdbca3cb1607799a630489a3a9dc956d (patch)
tree8c7690d1c6ced8cffee4b13c684a86d278e593c0 /Bugzilla
parentf48775a916e7c59da5ec59ad7f0dd729f5a80c17 (diff)
downloadbugzilla-1809e275fdbca3cb1607799a630489a3a9dc956d.tar.gz
bugzilla-1809e275fdbca3cb1607799a630489a3a9dc956d.tar.xz
Bug 162151 - Fix page.cgi's method of finding templates. It now looks in a "pages" subdirectory of the template directory. Patch by gerv; r=bbaetz.
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Config.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/Bugzilla/Config.pm b/Bugzilla/Config.pm
index a2c334a16..3ebcb91c6 100644
--- a/Bugzilla/Config.pm
+++ b/Bugzilla/Config.pm
@@ -51,9 +51,9 @@ Bugzilla::Config - Configuration parameters for Bugzilla
use Bugzilla::Config qw(:db);
print "Connecting to $db_name as $db_user with $db_pass\n";
- # These variables do not belong in localconfig, and need to go
+ # This variable does not belong in localconfig, and needs to go
# somewhere better
- use Bugzilla::Config($contenttypes $pages)
+ use Bugzilla::Config($contenttypes)
=head1 DESCRIPTION
@@ -75,7 +75,7 @@ use Bugzilla::Util;
# when it shouldn't
# ChmodDataFile is here until that stuff all moves out of globals.pl
# into this file
-@Bugzilla::Config::EXPORT_OK = qw($contenttypes $pages ChmodDataFile);
+@Bugzilla::Config::EXPORT_OK = qw($contenttypes ChmodDataFile);
%Bugzilla::Config::EXPORT_TAGS =
(
admin => [qw(GetParamList UpdateParams SetParam WriteParams)],