From 0d9e12737a90d4f275446969aee07190a173a11b Mon Sep 17 00:00:00 2001 From: zotlabs Date: Mon, 23 Jan 2017 11:36:28 -0800 Subject: remnant code that checked for version to see if an app was installed. We do that differently now. --- Zotlabs/Lib/Apps.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Zotlabs') diff --git a/Zotlabs/Lib/Apps.php b/Zotlabs/Lib/Apps.php index 65f5b3556..2480dde1f 100644 --- a/Zotlabs/Lib/Apps.php +++ b/Zotlabs/Lib/Apps.php @@ -448,9 +448,8 @@ class Apps { static public function app_installed($uid,$app) { - $r = q("select id from app where app_id = '%s' and app_version = '%s' and app_channel = %d limit 1", + $r = q("select id from app where app_id = '%s' and app_channel = %d limit 1", dbesc((array_key_exists('guid',$app)) ? $app['guid'] : ''), - dbesc((array_key_exists('version',$app)) ? $app['version'] : ''), intval($uid) ); return(($r) ? true : false); -- cgit v1.2.3