From 11f4a0af39bdad245061f9ef4dbe38a70af3a338 Mon Sep 17 00:00:00 2001 From: Kenzaburo Ito Date: Sat, 23 Dec 2000 16:17:57 +0000 Subject: [PATCH] reordered config file git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@102 f5dc347c-c33d-0410-90a0-b07cc1902cb9 --- ChangeLog | 1 + config_inc.php | 19 +++++++------------ 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/ChangeLog b/ChangeLog index b153c643aa..a0668455b3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -24,6 +24,7 @@ To Do: * Uncluttered large portions of code * Fixed another problem with the date created being updated improperly when dealing with bugnotes. + * Reordered the config_inc.php file items 12.20.2000 - 0.12.0 diff --git a/config_inc.php b/config_inc.php index 3fe37491c9..8ecdb60ffb 100644 --- a/config_inc.php +++ b/config_inc.php @@ -18,21 +18,15 @@ #-------------------- #-------------------- - # file path variables + # path to your installation as seen from the web browser $g_path = "/mantis/"; # requires trailing / #-------------------- #-------------------- # extensions for php 3 and php 4 - $g_php = ".php3"; # set this to php for php4 + # set this to php for php4 or whatever your webserver needs + $g_php = ".php3"; #-------------------- - # or whatever your webserver needs - - #-------------------- - $g_cookie_prefix = "MANTIS"; # set this to a unique identifier - # this allows you to have multiple - #-------------------- - # installations on one site. #-------------------- # table name prefix @@ -80,7 +74,7 @@ #-------------------- #-------------------- - # news + # limit the number of news items to be displayed on the main page $g_news_view_limit = 5; #-------------------- @@ -93,7 +87,7 @@ #-------------------- #-------------------- - # date lengths to bount bugs by + # date lengths to count bugs by # folows the english required by strtotime() $g_date_partitions = array("1 day","3 days","1 week","1 month","1 year"); #-------------------- @@ -126,7 +120,8 @@ #-------------------- #-------------------- - # cookies + # set this to a unique identifier + $g_cookie_prefix = "MANTIS"; # cookie names $g_string_cookie = $g_cookie_prefix."_STRING_COOKIE";