summaryrefslogtreecommitdiff
path: root/framework/Web/UI
diff options
context:
space:
mode:
Diffstat (limited to 'framework/Web/UI')
-rwxr-xr-xframework/Web/UI/ActiveControls/TActiveFileUpload.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/framework/Web/UI/ActiveControls/TActiveFileUpload.php b/framework/Web/UI/ActiveControls/TActiveFileUpload.php
index 2c85aff0..98a7f422 100755
--- a/framework/Web/UI/ActiveControls/TActiveFileUpload.php
+++ b/framework/Web/UI/ActiveControls/TActiveFileUpload.php
@@ -97,7 +97,8 @@ class TActiveFileUpload extends TFileUpload implements IActiveControl, ICallback
* the invocation of the attached event handlers.
* @param TEventParameter event parameter to be passed to the event handlers
*/
- public function onFileUpload($param){
+ public function onFileUpload($param)
+ {
if ($this->_flag->getValue() && $this->getPage()->getIsPostBack() && $param == $this->_target->getUniqueID()){
// save the file so that it will persist past the end of this return.
$localName = str_replace('\\', '/', tempnam(Prado::getPathOfNamespace($this->getTempPath()),''));
@@ -217,7 +218,7 @@ EOS;
*/
public function raisePostDataChangedEvent()
{
- $this->onFileUpload($this->getPage()->getRequest()->itemAt('tempActiveUploadField'));
+ $this->onFileUpload($this->getPage()->getRequest()->itemAt('TActiveFileUpload_TargetId'));
}
protected function pushParamsAndGetToken(TActiveFileUploadCallbackParams $params)