28 lines
1.4 KiB
Diff
28 lines
1.4 KiB
Diff
diff -ru bugzilla-orig/Bugzilla/Constants.pm bugzilla-3.0/Bugzilla/Constants.pm
|
|
--- bugzilla-orig/Bugzilla/Constants.pm 2007-05-09 18:47:17.000000000 -0400
|
|
+++ bugzilla-3.0/Bugzilla/Constants.pm 2007-05-19 15:56:02.000000000 -0400
|
|
@@ -423,18 +423,18 @@
|
|
'cgi_path' => $libpath,
|
|
'templatedir' => "$libpath/template",
|
|
'project' => $project,
|
|
- 'localconfig' => "$libpath/$localconfig",
|
|
- 'datadir' => "$libpath/$datadir",
|
|
- 'attachdir' => "$libpath/$datadir/attachments",
|
|
- 'skinsdir' => "$libpath/skins/contrib",
|
|
+ 'localconfig' => "/etc/bugzilla/$localconfig",
|
|
+ 'datadir' => "/var/lib/bugzilla/$datadir",
|
|
+ 'attachdir' => "/var/lib/bugzilla/$datadir/attachments",
|
|
+ 'skinsdir' => "$libpath/skins",
|
|
# $webdotdir must be in the webtree somewhere. Even if you use a
|
|
# local dot, we output images to there. Also, if $webdotdir is
|
|
# not relative to the bugzilla root directory, you'll need to
|
|
# change showdependencygraph.cgi to set image_url to the correct
|
|
# location.
|
|
# The script should really generate these graphs directly...
|
|
- 'webdotdir' => "$libpath/$datadir/webdot",
|
|
- 'extensionsdir' => "$libpath/extensions",
|
|
+ 'webdotdir' => "/var/lib/bugzilla/$datadir/webdot",
|
|
+ 'extensionsdir' => "/var/lib/bugzilla/extensions",
|
|
};
|
|
}
|
|
|