|
From: Meik S. <acy...@ph...> - 2009-08-28 11:40:35
|
Author: acydburn
Date: Fri Aug 28 12:39:45 2009
New Revision: 10061
Log:
Send service unavailable response code for E_USER_ERROR
Modified:
branches/phpBB-3_0_0/phpBB/includes/functions.php
Modified: branches/phpBB-3_0_0/phpBB/includes/functions.php
==============================================================================
*** branches/phpBB-3_0_0/phpBB/includes/functions.php (original)
--- branches/phpBB-3_0_0/phpBB/includes/functions.php Fri Aug 28 12:39:45 2009
***************
*** 3595,3600 ****
--- 3595,3603 ----
$db->sql_return_on_error(false);
}
+ // Do not send 200 OK, but service unavailable on errors
+ header('HTTP/1.1 503 Service Unavailable');
+
garbage_collection();
// Try to not call the adm page data...
|