diff options
author | laurent.duretz <laurent.duretz@piwigo.org> | 2010-04-22 13:11:32 +0000 |
---|---|---|
committer | laurent.duretz <laurent.duretz@piwigo.org> | 2010-04-22 13:11:32 +0000 |
commit | 4dccf2577668877844e193c92778215d0316fb4a (patch) | |
tree | 5db84608f83a940ceeb286a82357e0f61983878e /include/config_default.inc.php | |
parent | 3402ea7bf3347520f9bb8ba536328954ea9902b3 (diff) |
Issue 1521 : report trunk on branch 2.0
git-svn-id: http://piwigo.org/svn/branches/2.0@5938 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/config_default.inc.php')
-rw-r--r-- | include/config_default.inc.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/include/config_default.inc.php b/include/config_default.inc.php index 4609c67b8..3946d82f5 100644 --- a/include/config_default.inc.php +++ b/include/config_default.inc.php @@ -43,9 +43,6 @@ // | misc | // +-----------------------------------------------------------------------+ -// home_page : relative url of your homepage. Empty by default. It points to the index of the gallery. -$conf['home_page'] = ''; - // order_by : how to change the order of display for images in a category ? // // There are several fields that can order the display : @@ -329,6 +326,12 @@ $conf['double_password_type_in_admin'] = false; // 'filename' $conf['uniqueness_mode'] = 'md5sum'; +// home_page : relative url of the homepage. Empty by default. +// It points to the index of the gallery. +// This parameter is used if home page is not index.php of the gallery. +// We suggest avoid the names "index.htm" or "index.html" if you set $conf['php_extension_in_urls'] to false. +$conf['home_page'] = ''; + // +-----------------------------------------------------------------------+ // | metadata | // +-----------------------------------------------------------------------+ |