constants added for url parameter names

git-svn-id: file:///svn/phpbb/trunk@86 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2001-03-09 14:03:17 +00:00
parent 012e64b3d2
commit a5173dd59b

View file

@ -64,6 +64,11 @@ define(NO_TOPICS, 5);
define(GENERAL_ERROR, 6); define(GENERAL_ERROR, 6);
define(LOGIN_FAILED, 7); define(LOGIN_FAILED, 7);
// URL PARAMETERS
define(POST_TOPIC_URL, 't');
define(POST_FORUM_URL, 'f');
define(POST_USERS_URL, 'u');
// Session data // Session data
$session_cookie = "phpBBsession"; $session_cookie = "phpBBsession";
$session_cookie_time = 3600; $session_cookie_time = 3600;
@ -76,7 +81,7 @@ $dbuser = "";
$dbpasswd = ""; $dbpasswd = "";
// Date format (needs to go into DB) // 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 // DB table config
$table_prefix = "phpbb_"; $table_prefix = "phpbb_";