Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
reordered config file
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@102 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
Kenzaburo Ito committed Dec 23, 2000
1 parent 5c67e98 commit 11f4a0a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 12 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Expand Up @@ -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

Expand Down
19 changes: 7 additions & 12 deletions config_inc.php
Expand Up @@ -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
Expand Down Expand Up @@ -80,7 +74,7 @@
#--------------------

#--------------------
# news
# limit the number of news items to be displayed on the main page
$g_news_view_limit = 5;
#--------------------

Expand All @@ -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");
#--------------------
Expand Down Expand Up @@ -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";
Expand Down

0 comments on commit 11f4a0a

Please sign in to comment.