aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/config.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-03-09 14:03:17 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-03-09 14:03:17 +0000
commita5173dd59b52e90984b02a818df8c6e39aa2321d (patch)
treec858db2e329bdd78d36ae0f6427cf252fb94f961 /phpBB/config.php
parent012e64b3d214e8c6eae2cbb21cd9881f2e623dbe (diff)
downloadforums-a5173dd59b52e90984b02a818df8c6e39aa2321d.tar
forums-a5173dd59b52e90984b02a818df8c6e39aa2321d.tar.gz
forums-a5173dd59b52e90984b02a818df8c6e39aa2321d.tar.bz2
forums-a5173dd59b52e90984b02a818df8c6e39aa2321d.tar.xz
forums-a5173dd59b52e90984b02a818df8c6e39aa2321d.zip
constants added for url parameter names
git-svn-id: file:///svn/phpbb/trunk@86 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/config.php')
-rw-r--r--phpBB/config.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/phpBB/config.php b/phpBB/config.php
index 9acdd8fac9..6b04d9c636 100644
--- a/phpBB/config.php
+++ b/phpBB/config.php
@@ -64,6 +64,11 @@ define(NO_TOPICS, 5);
define(GENERAL_ERROR, 6);
define(LOGIN_FAILED, 7);
+// URL PARAMETERS
+define(POST_TOPIC_URL, 't');
+define(POST_FORUM_URL, 'f');
+define(POST_USERS_URL, 'u');
+
// Session data
$session_cookie = "phpBBsession";
$session_cookie_time = 3600;
@@ -76,7 +81,7 @@ $dbuser = "";
$dbpasswd = "";
// Date format (needs to go into DB)
-$date_format = "M d, Y h:i:s a";
+$date_format = "M d Y h:i:s a";
// DB table config
$table_prefix = "phpbb_";