diff options
author | pmichaud <pmichaud@524c5546-5005-0410-9a3e-e25e191bd360> | 2006-09-25 20:31:49 +0000 |
---|---|---|
committer | pmichaud <pmichaud@524c5546-5005-0410-9a3e-e25e191bd360> | 2006-09-25 20:31:49 +0000 |
commit | d7c0221779534032fb1acfa36c8a77b48eb0f8b9 (patch) | |
tree | 3137c94226699ad93b7494b6e06de5611e7f9d32 /docs | |
parent | 380e38b4a65ec5f4f5ced7324d919b30ff0b84cb (diff) | |
download | pmwiki.svn-d7c0221779534032fb1acfa36c8a77b48eb0f8b9.tar.bz2 |
Add desired default setting of $EnableRelativePageVars.
git-svn-id: svn://pmwiki.org/pmwiki/trunk@1623 524c5546-5005-0410-9a3e-e25e191bd360
Diffstat (limited to 'docs')
-rw-r--r-- | docs/sample-config.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/sample-config.php b/docs/sample-config.php index bc445499..44434288 100644 --- a/docs/sample-config.php +++ b/docs/sample-config.php @@ -110,6 +110,12 @@ $WikiTitle = 'PmWiki'; # if ($action == 'dc') include_once('scripts/feeds.php'); # Dublin Core # if ($action == 'rdf') include_once('scripts/feeds.php'); # RSS 1.0 +## In the 2.2.0-beta series, {$var} page variables are absolute by +## default, but a future version will make them relative. This setting +## sets them out as relative to begin with. (If you're starting a new +## site, it's probably best to leave this setting alone.) +$EnableRelativePageVars = 1; + ## PmWiki allows a great deal of flexibility for creating custom markup. ## To add support for '*bold*' and '~italic~' markup (the single quotes ## are part of the markup), uncomment the following lines. |