diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-07-03 22:50:56 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-07-03 22:50:56 +0000 |
commit | bed1d3ab9adadeea484384b38849ec568ef5d4ed (patch) | |
tree | 5d171f119a1df14122015fd7861204e881c4692c /phpBB/common.php | |
parent | 356f845abc4ed17322c7afc904ba4a67718327d2 (diff) | |
download | forums-bed1d3ab9adadeea484384b38849ec568ef5d4ed.tar forums-bed1d3ab9adadeea484384b38849ec568ef5d4ed.tar.gz forums-bed1d3ab9adadeea484384b38849ec568ef5d4ed.tar.bz2 forums-bed1d3ab9adadeea484384b38849ec568ef5d4ed.tar.xz forums-bed1d3ab9adadeea484384b38849ec568ef5d4ed.zip |
Updates related to message.php and transaction update
git-svn-id: file:///svn/phpbb/trunk@547 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/common.php')
-rw-r--r-- | phpBB/common.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/common.php b/phpBB/common.php index 44066cb6a8..00d4fa066f 100644 --- a/phpBB/common.php +++ b/phpBB/common.php @@ -65,6 +65,7 @@ include('includes/auth.'.$phpEx); include('includes/functions.'.$phpEx); include('includes/db.'.$phpEx); + // Obtain and encode users IP //$get_user_ip = ; $user_ip = encode_ip(($HTTP_X_FORWARDED_FOR) ? $HTTP_X_FORWARDED_FOR : $REMOTE_ADDR); @@ -89,7 +90,7 @@ if(!$result = $db->sql_query($sql)) $board_config['default_lang'] = "english"; $board_config['gzip_compress'] = 0; - message_die(SQL_QUERY, "Could not query config information", "", __LINE__, __FILE__); + message_die(CRITICAL_ERROR, "Could not query config information", "", __LINE__, __FILE__, $sql); } else { |