From: Andrew Dolgov Date: Tue, 26 Mar 2013 16:31:30 +0000 (+0400) Subject: add redirect to digest on smartphones if mobile is missing X-Git-Tag: 1.7.6~263^2 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=a543e86d8587634f27556f1505d338f03af10246;p=tt-rss.git add redirect to digest on smartphones if mobile is missing --- diff --git a/index.php b/index.php index c6698793..8230a49b 100644 --- a/index.php +++ b/index.php @@ -38,6 +38,9 @@ } else if ($mobile->isMobile() && $pluginhost->get_plugin("mobile")) { header('Location: backend.php?op=mobile'); exit; + } else if ($mobile->isMobile() && $pluginhost->get_plugin("digest")) { + header('Location: backend.php?op=digest'); + exit; } }