diff options
author | emkael <emkael@tlen.pl> | 2016-04-25 12:13:33 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-04-25 12:13:33 +0200 |
commit | 0dda5b8c12573779a1e2b7e820284dafe04956e3 (patch) | |
tree | b0b238b79387138c057d544d48ed1e4b3e64c9ba /app/php/components/SafeFileUpload.php | |
parent | 050c6cfd0e75249ae7b7dad3f8ec6eed6be50102 (diff) |
* splitting traits for safer file upload components
Diffstat (limited to 'app/php/components/SafeFileUpload.php')
-rw-r--r-- | app/php/components/SafeFileUpload.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/php/components/SafeFileUpload.php b/app/php/components/SafeFileUpload.php index dcc81a0..a8cbcae 100644 --- a/app/php/components/SafeFileUpload.php +++ b/app/php/components/SafeFileUpload.php @@ -1,10 +1,10 @@ <?php -Prado::using('Application.components.SafeFileUploadMethods'); +Prado::using('Application.components.FileUploadSecureMethods'); class SafeFileUpload extends TFileUpload { - use SafeFileUploadMethods; + use FileUploadSecureMethods; } |