From e2b765792fd664cc45c2cc9f686f2b4988b80148 Mon Sep 17 00:00:00 2001 From: xue <> Date: Sat, 18 Nov 2006 13:21:32 +0000 Subject: fixed #454. reverted back constructUrl so that ampersand is not encoded by default. --- framework/TApplication.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'framework/TApplication.php') diff --git a/framework/TApplication.php b/framework/TApplication.php index bf286e2c..4091ceb8 100644 --- a/framework/TApplication.php +++ b/framework/TApplication.php @@ -1317,10 +1317,7 @@ class TApplicationStatePersister extends TModule implements IStatePersister if($saveFile) { $fileName=$this->getStateFilePath(); - if(version_compare(phpversion(),'5.1.0','>=')) - file_put_contents($fileName,$content,LOCK_EX); - else - file_put_contents($fileName,$content); + file_put_contents($fileName,$content,LOCK_EX); } } -- cgit v1.2.3