diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-11-20 06:49:43 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-11-20 06:49:43 +0000 |
commit | e2b040c6ae3797a5d6ec6c0f05f6bf3194e07c52 (patch) | |
tree | dffcfc3fa6d3b57e90f7a119a342af64398fef17 | |
parent | 66192bb214eceac9ddda2707e4b07626e8f972ee (diff) |
Add a missing slash in the HTTP return code
-rw-r--r-- | core/helpers/rest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/helpers/rest.php b/core/helpers/rest.php index dabff770..1e14b0e2 100644 --- a/core/helpers/rest.php +++ b/core/helpers/rest.php @@ -87,7 +87,7 @@ class REST_Core { * @param string Use one of status code constants defined in this class. */ public static function http_status($status_code) { - header("HTTP 1.1 " . $status_code); + header("HTTP/1.1 " . $status_code); } /** |