From a5173dd59b52e90984b02a818df8c6e39aa2321d Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Fri, 9 Mar 2001 14:03:17 +0000 Subject: [PATCH] constants added for url parameter names git-svn-id: file:///svn/phpbb/trunk@86 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/config.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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_";