aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/config.php
diff options
context:
space:
mode:
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_";