diff options
author | emkael <emkael@tlen.pl> | 2016-04-06 13:54:40 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-04-06 13:54:40 +0200 |
commit | f3e0c5b654734d812d062cc5ed4b927913319e00 (patch) | |
tree | b2d1e5e3403a4df107c1719ca1e5649701b49007 | |
parent | dfe234a7aaaacedcc94716f955b44a1b50c4a057 (diff) |
* Safe*FileUpload components moved back to components namespace
-rw-r--r-- | app/php/components/SafeActiveFileUpload.php (renamed from app/php/controls/SafeActiveFileUpload.php) | 2 | ||||
-rw-r--r-- | app/php/components/SafeFileUpload.php (renamed from app/php/controls/SafeFileUpload.php) | 0 | ||||
-rw-r--r-- | app/php/controls/CalendarScaffold.php | 1 |
3 files changed, 2 insertions, 1 deletions
diff --git a/app/php/controls/SafeActiveFileUpload.php b/app/php/components/SafeActiveFileUpload.php index ada1e34..9b8e2a8 100644 --- a/app/php/controls/SafeActiveFileUpload.php +++ b/app/php/components/SafeActiveFileUpload.php @@ -1,7 +1,7 @@ <?php Prado::using('System.Web.UI.ActiveControls.TActiveFileUpload'); -Prado::using('Application.controls.SafeFileUpload'); +Prado::using('Application.components.SafeFileUpload'); class SafeActiveFileUpload extends TActiveFileUpload { diff --git a/app/php/controls/SafeFileUpload.php b/app/php/components/SafeFileUpload.php index 98e120a..98e120a 100644 --- a/app/php/controls/SafeFileUpload.php +++ b/app/php/components/SafeFileUpload.php diff --git a/app/php/controls/CalendarScaffold.php b/app/php/controls/CalendarScaffold.php index f265d53..70efcaa 100644 --- a/app/php/controls/CalendarScaffold.php +++ b/app/php/controls/CalendarScaffold.php @@ -2,6 +2,7 @@ Prado::using('System.Web.UI.ActiveControls.TActiveDataGrid'); Prado::using('System.Web.UI.ActiveControls.TActiveTextBox'); +Prado::using('Application.components.SafeActiveFileUpload'); Prado::using('Application.facades.CalendarFacade'); class CalendarScaffold extends TTemplateControl { |