diff options
| author | Bharat Mediratta <bharat@menalto.com> | 2010-08-07 18:02:39 -0700 | 
|---|---|---|
| committer | Bharat Mediratta <bharat@menalto.com> | 2010-08-07 18:02:39 -0700 | 
| commit | c6ca77377f2c55316923c62e80b34802a45979c2 (patch) | |
| tree | cf41c45f074421fffdd771ead1e9429792109df1 /modules/gallery/controllers | |
| parent | 779d91cca01567a09b894e9fff4dfa32cb82d3d9 (diff) | |
Whitespace fix.
Diffstat (limited to 'modules/gallery/controllers')
| -rw-r--r-- | modules/gallery/controllers/uploader.php | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/modules/gallery/controllers/uploader.php b/modules/gallery/controllers/uploader.php index 87520032..85d344d6 100644 --- a/modules/gallery/controllers/uploader.php +++ b/modules/gallery/controllers/uploader.php @@ -50,7 +50,8 @@ class Uploader_Controller extends Controller {      // Uploadify adds its own field to the form, so validate that separately.      $file_validation = new Validation($_FILES);      $file_validation->add_rules( -      "Filedata", "upload::valid",  "upload::required", "upload::type[gif,jpg,jpeg,png,flv,mp4,m4v]"); +      "Filedata", "upload::valid",  "upload::required", +      "upload::type[gif,jpg,jpeg,png,flv,mp4,m4v]");      if ($form->validate() && $file_validation->validate()) {        $temp_filename = upload::save("Filedata"); | 
