diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-05-18 00:14:07 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-05-18 00:14:07 +0000 |
commit | fd0c0a608a5de2b26c29d3c44a7929e5a3b2c042 (patch) | |
tree | 387f2628cae3580b7f09682de6e908d002c5fbb0 /kohana/helpers/request.php | |
parent | 5a6aef9c23930b1de609c9914297e0f97bc49a11 (diff) |
Updated kohana and modules/unit_test to upstream r4356
Diffstat (limited to 'kohana/helpers/request.php')
-rw-r--r-- | kohana/helpers/request.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kohana/helpers/request.php b/kohana/helpers/request.php index 625f9226..091a9d68 100644 --- a/kohana/helpers/request.php +++ b/kohana/helpers/request.php @@ -33,7 +33,7 @@ class request_Core { if (strpos($ref, url::base(FALSE)) === 0) { // Remove the base URL from the referrer - $ref = substr($ref, strlen(url::base(TRUE))); + $ref = substr($ref, strlen(url::base(FALSE))); } } |