From: Sarven Capadisli Date: Sun, 4 Oct 2009 20:42:03 +0000 (+0000) Subject: If not meant to serveMobile, show the default styles X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ef7e4cb72d12b714215317635e1de4badf340529;p=quix0rs-gnu-social.git If not meant to serveMobile, show the default styles --- diff --git a/plugins/MobileProfile/MobileProfilePlugin.php b/plugins/MobileProfile/MobileProfilePlugin.php index e7db09f15c..117e0aae65 100644 --- a/plugins/MobileProfile/MobileProfilePlugin.php +++ b/plugins/MobileProfile/MobileProfilePlugin.php @@ -173,6 +173,10 @@ class MobileProfilePlugin extends WAP20Plugin function onStartShowStatusNetStyles($action) { + if (!$action->serveMobile) { + return true; + } + if (file_exists(theme_file('css/mp-screen.css'))) { $action->cssLink('css/mp-screen.css', null, 'screen'); }