diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-05-16 12:31:08 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-05-16 12:31:08 +0000 |
commit | ced0838a825076b76de631dc1a1216acf65f2b92 (patch) | |
tree | a63cc6a49794b7bf7823e1102920c7f1c91a724a /includes | |
parent | 1022eb61ab984862167bfa584ab4044ee2410d5b (diff) | |
download | brdo-ced0838a825076b76de631dc1a1216acf65f2b92.tar.gz brdo-ced0838a825076b76de631dc1a1216acf65f2b92.tar.bz2 |
- Fixed bug in path_uri()
Diffstat (limited to 'includes')
-rw-r--r-- | includes/common.inc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc index 99f87a1f4..0a24fc927 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -40,7 +40,6 @@ function throttle($type, $rate) { function path_uri() { global $HTTP_HOST, $REQUEST_URI; - $REQUEST_URI = strstr("export/", $REQUEST_URI); return "http://". $HTTP_HOST . substr($REQUEST_URI, 0, strrpos($REQUEST_URI, "/")) ."/"; } |