diff --git a/apps.manifest.inc b/apps.manifest.inc index cd494d9..ffdcadd 100755 --- a/apps.manifest.inc +++ b/apps.manifest.inc @@ -147,10 +147,10 @@ function apps_client_id() { * TODO: Handle lack of server presense OPIC-374 */ function apps_request_manifest($server) { - //$manifest_cache = cache_get("apps_manifest_{$server['name']}"); - $manifest_cache = false; - $manifest = $manifest_cache ? $manifest_cache->data : FALSE; - + if ($cache = cache_get("apps_manifest_{$server['name']}")) { + $manifest = $cache->data; + } + if(!$manifest) { if(!$server['manifest']) { $apps = apps_server_local($server);