1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-19 23:32:02 +02:00

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(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_";