diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-05-14 16:51:51 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-05-14 16:51:51 -0700 |
commit | 3422185938436b44ee48515cd3cfa3df55bca3c8 (patch) | |
tree | dea93b4da1d02991e5e004592d1534bc68599899 /modules/gallery/controllers/quick.php | |
parent | 9a1995a8792fd504424e37407517633417bb2294 (diff) |
Remove "rnd=" param from quick changes since we have the m= cache-buster already.
Diffstat (limited to 'modules/gallery/controllers/quick.php')
-rw-r--r-- | modules/gallery/controllers/quick.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gallery/controllers/quick.php b/modules/gallery/controllers/quick.php index 813d1a93..6cfbbc62 100644 --- a/modules/gallery/controllers/quick.php +++ b/modules/gallery/controllers/quick.php @@ -58,12 +58,12 @@ class Quick_Controller extends Controller { if (Input::instance()->get("page_type") == "collection") { print json_encode( - array("src" => $item->thumb_url() . "?rnd=" . rand(), + array("src" => $item->thumb_url(), "width" => $item->thumb_width, "height" => $item->thumb_height)); } else { print json_encode( - array("src" => $item->resize_url() . "?rnd=" . rand(), + array("src" => $item->resize_url(), "width" => $item->resize_width, "height" => $item->resize_height)); } |