diff options
| author | Chad Parry <github@chad.parry.org> | 2011-04-27 20:29:06 -0600 |
|---|---|---|
| committer | Chad Parry <github@chad.parry.org> | 2011-04-27 20:29:06 -0600 |
| commit | 7ff485fa48c392bbbb0370f67cb1bd6fcc00c2a4 (patch) | |
| tree | 4cb4a853f7981f7ce54705bb7fb26cbbc17156a6 /modules/gallery/libraries | |
| parent | 26585fed03236f0f70a75959e1d3002025f4e15e (diff) | |
Move the extensions helpers out of the Kohana system directory and into their own Gallery Extensions class.
Diffstat (limited to 'modules/gallery/libraries')
| -rw-r--r-- | modules/gallery/libraries/Form_Uploadify.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gallery/libraries/Form_Uploadify.php b/modules/gallery/libraries/Form_Uploadify.php index c79b9aa2..c046fe3a 100644 --- a/modules/gallery/libraries/Form_Uploadify.php +++ b/modules/gallery/libraries/Form_Uploadify.php @@ -47,7 +47,7 @@ class Form_Uploadify_Core extends Form_Input { $v->script_data = $this->data["script_data"]; $v->simultaneous_upload_limit = module::get_var("gallery", "simultaneous_upload_limit"); $v->movies_allowed = (bool) movie::find_ffmpeg(); - $v->extensions = upload::get_upload_filters(); + $v->extensions = extensions::get_upload_filters(); $v->suhosin_session_encrypt = (bool) ini_get("suhosin.session.encrypt"); list ($toolkit_max_filesize_bytes, $toolkit_max_filesize) = graphics::max_filesize(); @@ -69,4 +69,4 @@ class Form_Uploadify_Core extends Form_Input { public function validate() { return true; } -}
\ No newline at end of file +} |
