]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Using common_redirect
authorSarven Capadisli <csarven@status.net>
Fri, 20 Nov 2009 02:12:09 +0000 (02:12 +0000)
committerSarven Capadisli <csarven@status.net>
Fri, 20 Nov 2009 02:12:09 +0000 (02:12 +0000)
plugins/MobileProfile/MobileProfilePlugin.php

index 9f8923396dabce17a957c2953103d1a0eb7c3ef6..c257f3fd842549f55b90527e1982f0b9abed314a 100644 (file)
@@ -63,9 +63,6 @@ class MobileProfilePlugin extends WAP20Plugin
 
     function onStartShowHTML($action)
     {
-
-
-
         // XXX: This should probably graduate to WAP20Plugin
 
         // If they are on the mobile site, serve them MP
@@ -162,8 +159,7 @@ class MobileProfilePlugin extends WAP20Plugin
                     common_config('site', 'server'))) {
 
                 // FIXME: Redirect to equivalent page on mobile site instead
-                header("Location: ".$this->_common_path(''));
-                exit();
+                common_redirect($this->_common_path(''), 302);
             }
         }