diff options
author | Kevin Cupp <kevin.cupp@gmail.com> | 2012-02-05 20:14:32 +0100 |
---|---|---|
committer | Kevin Cupp <kevin.cupp@gmail.com> | 2012-02-05 20:14:32 +0100 |
commit | d63e40138e675df40f3a17e04972e82e7a748307 (patch) | |
tree | 02ad420bf5ec25e6e3379e1f821e4e029b00f828 /system/core/Input.php | |
parent | b211adee89f5fd2192051e9c0826146bd150f469 (diff) |
Adding in a few 503 status codes for common errors in response to this ExpressionEngine bug about errors getting cached by reverse proxies who cache 200 responses: http://expressionengine.com/bug_tracker/bug/17420
Diffstat (limited to 'system/core/Input.php')
-rwxr-xr-x | system/core/Input.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/system/core/Input.php b/system/core/Input.php index 7a16e51ab..3339d97c5 100755 --- a/system/core/Input.php +++ b/system/core/Input.php @@ -592,6 +592,7 @@ class CI_Input { { if ( ! preg_match('/^[a-z0-9:_\/-]+$/i', $str)) { + set_status_header(503); exit('Disallowed Key Characters.'); } |