related to #1428 hide banner when on ios mobile device

This commit is contained in:
Matthieu Leproux
2022-06-21 14:07:27 +02:00
parent 3d69c6b093
commit 2bc2112643
+3 -1
View File
@@ -65,8 +65,10 @@ SELECT COUNT(*)
;';
list($nb_images) = pwg_db_fetch_row(pwg_query($query));
include_once(PHPWG_ROOT_PATH.'include/mdetect.php');
$uagent_obj = new uagent_info();
// To see the mobile app promote, the account must have 2 weeks ancient, 3 albums created and 30 photos uploaded
$template->assign("PROMOTE_MOBILE_APPS", (strtotime($register_date) < strtotime('2 weeks ago') and $nb_cats >= 3 and $nb_images >= 30));
$template->assign("PROMOTE_MOBILE_APPS", (!$uagent_obj->DetectIos() and strtotime($register_date) < strtotime('2 weeks ago') and $nb_cats >= 3 and $nb_images >= 30));
}
else
{