From: Remi Rampin Date: Sun, 24 Mar 2013 03:06:42 +0000 (-0400) Subject: Removes redirection to mobile/ X-Git-Tag: 1.7.6~329^2 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=a4d4bceb978e828aa21950c8eb2b1bd2be79726b;p=tt-rss.git Removes redirection to mobile/ mobile/ was removed by d98e76d9c2 but the redirection still existed in index.php, causing the site to be inaccessible on mobile devices. --- diff --git a/index.php b/index.php index bf8eafe7..d92c2fc1 100644 --- a/index.php +++ b/index.php @@ -35,9 +35,6 @@ if ($mobile->isTablet() && $pluginhost->get_plugin("digest")) { header('Location: backend.php?op=digest'); exit; - } else if ($mobile->isMobile()) { - header('Location: mobile/index.php'); - exit; } }