diff options
author | mkanat%bugzilla.org <> | 2006-07-29 20:51:11 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2006-07-29 20:51:11 +0200 |
commit | c1ff3441a2007aa5e29ce42b407faa57d511d746 (patch) | |
tree | 058d09beb36b343b29d6d95c0e8d8d31dae78599 | |
parent | d4d6011cdc1742f13ca773baf5e4867a8821b8bc (diff) | |
download | bugzilla-c1ff3441a2007aa5e29ce42b407faa57d511d746.tar.gz bugzilla-c1ff3441a2007aa5e29ce42b407faa57d511d746.tar.xz |
Bug 346295: When Template::Plugin::GD is missing, checksetup.pl tells you to type "ppm install Template" instead of "ppm install Template-Toolkit"
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=justdave
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 81b6cc4cb..baaeb49df 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -171,7 +171,7 @@ use constant WIN32_MODULE_NAMES => { 'Mail::Mailer' => 'MailTools', # We provide Template 2.14 or lower for Win32, so it still includes # the GD plugin. - 'Template::Plugin::GD' => 'Template', + 'Template::Plugin::GD' => 'Template-Toolkit', }; sub check_requirements { |