diff options
author | mkanat%bugzilla.org <> | 2006-08-16 08:18:32 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2006-08-16 08:18:32 +0200 |
commit | b78fb46e51ed00ac352b3f72f2ba9ee50ad17101 (patch) | |
tree | 578136f313882ceca743e4a7272584df200ee6e7 /Bugzilla/Install | |
parent | e98e1e1699abc0551f3ca783794aea49c5d0c908 (diff) | |
download | bugzilla-b78fb46e51ed00ac352b3f72f2ba9ee50ad17101.tar.gz bugzilla-b78fb46e51ed00ac352b3f72f2ba9ee50ad17101.tar.xz |
Bug 347619: skins/custom/*.css not created
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=myk
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/Filesystem.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Install/Filesystem.pm b/Bugzilla/Install/Filesystem.pm index 76116bdff..9ba8fcd1b 100644 --- a/Bugzilla/Install/Filesystem.pm +++ b/Bugzilla/Install/Filesystem.pm @@ -197,7 +197,7 @@ sub FILESYSTEM { foreach my $standard (<skins/standard/*.css>) { my $custom = $standard; $custom =~ s|^skins/standard|skins/custom|; - $files{$custom} = { perms => $ws_readable, contents => <<EOT + $create_files{$custom} = { perms => $ws_readable, contents => <<EOT /* * Custom rules for $standard. * The rules you put here override rules in that stylesheet. |