summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorxue <>2005-11-13 13:09:24 +0000
committerxue <>2005-11-13 13:09:24 +0000
commite80556be742870dfe164d8521e3d640fa1482f7c (patch)
tree7428700f797472dbd80fe611540da3ee7202630d /framework
parent3d81c30a35b1b7d83f24adcfd27e390f98390096 (diff)
Fixed a bug with stripSlashes. again!
Diffstat (limited to 'framework')
-rw-r--r--framework/Web/THttpRequest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Web/THttpRequest.php b/framework/Web/THttpRequest.php
index 5bca05ce..a90ee2dd 100644
--- a/framework/Web/THttpRequest.php
+++ b/framework/Web/THttpRequest.php
@@ -114,7 +114,7 @@ class THttpRequest extends TComponent implements IModule
*/
public function stripSlashes(&$data)
{
- return is_array($data)?array_map(array('Prado','stripSlashes'),$data):stripslashes($data);
+ return is_array($data)?array_map(array($this,'stripSlashes'),$data):stripslashes($data);
}
/**