diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-11-15 11:32:13 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-11-15 11:32:13 +0000 |
commit | a03579fcaf90e49494031865baed4e2f1eea283e (patch) | |
tree | 302ee30999bb5ecd2426c8e078049faf04870c69 /includes | |
parent | f37a65cab9673c872983ae7626e11df096613cf4 (diff) | |
download | brdo-a03579fcaf90e49494031865baed4e2f1eea283e.tar.gz brdo-a03579fcaf90e49494031865baed4e2f1eea283e.tar.bz2 |
- Patch #12795 by thorne: added documentation for overriding variables from
the configuration file.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/conf.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/includes/conf.php b/includes/conf.php index 1fb92208a..365d4fd68 100644 --- a/includes/conf.php +++ b/includes/conf.php @@ -50,4 +50,19 @@ $base_url = "http://localhost"; # If required, update PHP's include path to include your PEAR directory: // ini_set("include_path", ".:/path/to/pear"); +# +# Variable overrides: +# +# To override specific entries in the 'variable' table for this site, +# set them here. You usually don't need to use this feature. This is +# useful when used in a configuration file for a vhost or directory, +# rather than the default conf.php. Any configuration setting from the +# variable table can be given a new value. +# +# $conf = array( +# 'site_name' => 'My Drupal site', +# 'theme_default' => 'pushbutton', +# 'anonymous' => 'Visitor' +# ); + ?> |