diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-08-21 15:25:06 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-08-21 15:25:06 -0700 |
commit | ae618840b6672444c1e3a92d1907b4a1306146df (patch) | |
tree | 441d6a7c45ef3678e1b2ca5479e47636f72d7c59 /modules | |
parent | c6a28a93ddfcf692e67342707d2b4a41dcf19fe5 (diff) |
Tighten up whitespace.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/organize/controllers/organize.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/modules/organize/controllers/organize.php b/modules/organize/controllers/organize.php index 7b2ba8ef..d2f3fbf5 100644 --- a/modules/organize/controllers/organize.php +++ b/modules/organize/controllers/organize.php @@ -31,10 +31,9 @@ class Organize_Controller extends Controller { $sort_fields[$field] = (string)$description; } $sort_order = array("ASC" => (string)t("Ascending"), "DESC" => (string)t("Descending")); - $file_filter = json_encode( - array("photo" => array("label" => "Images", - "types" => array("*.jpg", "*.jpeg", "*.png", "*.gif")), - "movie" => array("label" => "Movies", "types" => array("*.flv", "*.mp4", "*.m4v")))); + $file_filter = json_encode(array( + "photo" => array("label" => "Images", "types" => array("*.jpg", "*.jpeg", "*.png", "*.gif")), + "movie" => array("label" => "Movies", "types" => array("*.flv", "*.mp4", "*.m4v")))); $v = new View("organize_dialog.html"); $v->album = $album; |