Commit e11aa06d authored by mkanat%bugzilla.org's avatar mkanat%bugzilla.org

Bug 346815: Move most of checksetup's schema updates into Bugzilla::Install::DB

Patch By Max Kanat-Alexander <mkanat@bugzilla.org> (module owner) a=myk
parent 1f361a67
......@@ -30,6 +30,7 @@ use Bugzilla::Constants;
use Bugzilla::Install::Localconfig;
use File::Find;
use File::Path;
use IO::File;
use POSIX ();
......@@ -337,6 +338,16 @@ sub update_filesystem {
EOT
}
# Delete old files that no longer need to exist
# 2001-04-29 jake@bugzilla.org - Remove oldemailtech
# http://bugzilla.mozilla.org/show_bugs.cgi?id=71552
if (-d 'shadow') {
print "Removing shadow directory...\n";
rmtree("shadow");
}
}
sub create_htaccess {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment