diff options
author | gerv%gerv.net <> | 2002-09-18 16:20:12 +0200 |
---|---|---|
committer | gerv%gerv.net <> | 2002-09-18 16:20:12 +0200 |
commit | 1809e275fdbca3cb1607799a630489a3a9dc956d (patch) | |
tree | 8c7690d1c6ced8cffee4b13c684a86d278e593c0 /Bugzilla | |
parent | f48775a916e7c59da5ec59ad7f0dd729f5a80c17 (diff) | |
download | bugzilla-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.pm | 6 |
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)], |