diff options
| author | ctrlaltca@gmail.com <> | 2011-11-17 16:52:56 +0000 | 
|---|---|---|
| committer | ctrlaltca@gmail.com <> | 2011-11-17 16:52:56 +0000 | 
| commit | d840107832b1f59a9fc3b93ffb97ef976be1b83c (patch) | |
| tree | 58d0dc8ef1426fa10952d5e4bd59d758ed2da827 /framework/Exceptions | |
| parent | 730c58f877a335203f2b5e73e084a3079cf33f75 (diff) | |
3-in-1 bugfix commit:
1) TErrorHandler: avoid an error when trying to hide the file path of a lambda function
2) TSecurityManager: avoid a race condition when first generating the encryptionkey or the validationkey
3) TActiveFileUpload: urlencode the base64'ed token since it can contain the "+" character (otherway it would be traslated to a space)
Diffstat (limited to 'framework/Exceptions')
| -rw-r--r-- | framework/Exceptions/TErrorHandler.php | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/framework/Exceptions/TErrorHandler.php b/framework/Exceptions/TErrorHandler.php index 1fe5a928..363bdecf 100644 --- a/framework/Exceptions/TErrorHandler.php +++ b/framework/Exceptions/TErrorHandler.php @@ -4,7 +4,7 @@   *
   * @author Qiang Xue <qiang.xue@gmail.com>
   * @link http://www.pradosoft.com/
 - * @copyright Copyright © 2005-2011 PradoSoft + * @copyright Copyright © 2005-2011 PradoSoft
   * @license http://www.pradosoft.com/license/
   * @version $Id$
   * @package System.Exceptions
 @@ -83,8 +83,8 @@ class TErrorHandler extends TModule  	 * @return string the directory containing error template files.
  	 */
  	public function getErrorTemplatePath()
 -	{ -		if($this->_templatePath===null) +	{
 +		if($this->_templatePath===null)
  			$this->_templatePath=Prado::getFrameworkPath().'/Exceptions/templates';
  		return $this->_templatePath;
  	}
 @@ -154,8 +154,8 @@ class TErrorHandler extends TModule  			$aTrace = $exception->getTrace();
  			foreach($aTrace as $item)
  			{
 -				$file = $item['file'];
 -				$aRpl[dirname($file) . DIRECTORY_SEPARATOR] = '<hidden>' . DIRECTORY_SEPARATOR;
 +				if(isset($item['file']))
 +					$aRpl[dirname($item['file']) . DIRECTORY_SEPARATOR] = '<hidden>' . DIRECTORY_SEPARATOR;
  			}
  		}
  		$aRpl[$_SERVER['DOCUMENT_ROOT']] = '${DocumentRoot}';
 | 
