diff options
Diffstat (limited to 'framework/Web/UI')
| -rwxr-xr-x | framework/Web/UI/ActiveControls/TActiveFileUpload.php | 1 | ||||
| -rw-r--r-- | framework/Web/UI/WebControls/TFileUpload.php | 2 | 
2 files changed, 2 insertions, 1 deletions
diff --git a/framework/Web/UI/ActiveControls/TActiveFileUpload.php b/framework/Web/UI/ActiveControls/TActiveFileUpload.php index 1a49c20d..8cc1fe9a 100755 --- a/framework/Web/UI/ActiveControls/TActiveFileUpload.php +++ b/framework/Web/UI/ActiveControls/TActiveFileUpload.php @@ -274,6 +274,7 @@ EOS;  		if(!$this->getPage()->getIsPostBack() && isset($_GET['TActiveFileUpload_InputId']) && isset($_GET['TActiveFileUpload_TargetId']) && $_GET['TActiveFileUpload_InputId'] == $this->getClientID())  		{ +			// tricky workaround to intercept "uploaded file too big" error: real uploads happens in onFileUpload instead  			$this->_errorCode = UPLOAD_ERR_FORM_SIZE;  			$localName = str_replace('\\', '/', tempnam(Prado::getPathOfNamespace($this->getTempPath()),''));  			$filename = addslashes($this->getFileName()); diff --git a/framework/Web/UI/WebControls/TFileUpload.php b/framework/Web/UI/WebControls/TFileUpload.php index 593acc70..218a185b 100644 --- a/framework/Web/UI/WebControls/TFileUpload.php +++ b/framework/Web/UI/WebControls/TFileUpload.php @@ -57,7 +57,7 @@ class TFileUpload extends TWebControl implements IPostBackDataHandler, IValidata  	/**
  	 * @var integer error code of the current file upload
  	 */
 -	private $_errorCode=UPLOAD_ERR_NO_FILE;
 +	protected $_errorCode=UPLOAD_ERR_NO_FILE;
  	private $_dataChanged=false;
  	private $_isValid=true;
  | 
