. * */ require_once('../../../lib/base.php'); OC_JSON::checkLoggedIn(); OC_JSON::checkAppEnabled('gallery'); $img = $_GET['img']; $image = OC_Gallery_Photo::getThumbnail($img); if ($image) { OC_Response::enableCaching(3600 * 24); // 24 hour $image->show(); }