diff options
-rw-r--r-- | include/no_photo_yet.inc.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/no_photo_yet.inc.php b/include/no_photo_yet.inc.php index db347d9d6..92353dc76 100644 --- a/include/no_photo_yet.inc.php +++ b/include/no_photo_yet.inc.php @@ -41,6 +41,10 @@ SELECT list($nb_photos) = pwg_db_fetch_row(pwg_query($query)); if (0 == $nb_photos) { + // make sure we don't use the mobile theme, which is not compatible with + // the "no photo yet" feature + $template = new Template(PHPWG_ROOT_PATH.'themes', $user['theme']); + if (isset($_GET['no_photo_yet'])) { if ('browse' == $_GET['no_photo_yet']) |