Remove "rnd=" param from quick changes since we have the m= cache-buster already.

This commit is contained in:
Bharat Mediratta
2010-05-14 16:51:51 -07:00
parent 9a1995a879
commit 3422185938

View File

@@ -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));
}