diff options
-rw-r--r-- | HISTORY | 1 | ||||
-rwxr-xr-x | framework/Web/UI/ActiveControls/TActiveFileUpload.php | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -6,6 +6,7 @@ BUG: Issue#62 - Some mistyping: TJavascript or TJavaScript? (Carl) BUG: Issue#79 - Missing new operator for Exception in TSqlMapObjectCollectionTree::onChildNodesVisited() (Christophe) BUG: TActiveLinkButton and TActiveRadioButtonList crashes if it's the only active control imported. Added TActiveControlAdapter (Carl) BUG: TUrlMapping encoded extra parameters twice (Michael) +BUG: Issue#89 - TActiveFileUpload doesn't work (Carl) CHG: Removal of generator meta tag in THead ENH: Issue#36 - Refactored TRatingList/TActiveRatingList, and added some docs (Bradley) ENH: Issue#52 - Upgraded to TinyMCE 3.2.1 diff --git a/framework/Web/UI/ActiveControls/TActiveFileUpload.php b/framework/Web/UI/ActiveControls/TActiveFileUpload.php index e1b85f0d..a0a066f7 100755 --- a/framework/Web/UI/ActiveControls/TActiveFileUpload.php +++ b/framework/Web/UI/ActiveControls/TActiveFileUpload.php @@ -172,6 +172,7 @@ EOS; */ public function onPreRender($param){ parent::onPreRender($param); + $this->getPage()->getClientScript()->registerPradoScript('effects'); $this->getPage()->getClientScript()->registerPradoScript('activefileupload'); } |