From: myk%mozilla.org <> Date: Tue, 2 Apr 2002 05:38:58 +0000 (+0000) Subject: Fix for bug 107513: Makes it possible to change parameters on an installation where... X-Git-Tag: bugzilla-2.16rc1~155 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e583bdb0923a962fcef1af39896398862e13077;p=thirdparty%2Fbugzilla.git Fix for bug 107513: Makes it possible to change parameters on an installation where access to the scripts is not limited to the web server user. Patch by Myk Melez . r=justdave,bbaetz --- diff --git a/checksetup.pl b/checksetup.pl index bc8f9601e0..6ae737c783 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -877,7 +877,8 @@ EOF fixPerms('*', $<, $gid, 022); fixPerms('template', $<, $gid, 022, 1); fixPerms('css', $<, $gid, 022, 1); - chmod 01777, 'data', 'graphs'; + chmod 0777, 'data'; + chmod 01777, 'graphs'; }