Disabled redirect for ACP requests
authorAlexander Ebert <ebert@woltlab.com>
Wed, 12 Jun 2013 17:28:28 +0000 (19:28 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Wed, 12 Jun 2013 17:28:28 +0000 (19:28 +0200)
wcfsetup/install/files/lib/system/request/RequestHandler.class.php

index 8c729f1a0977f598d335869b409f79327b842265..b0b8e596667e23d04210e3dcc075ef44b52b467c 100644 (file)
@@ -120,27 +120,27 @@ class RequestHandler extends SingletonFactory {
                                                exit;
                                        }
                                }
-                       }
-                       
-                       // check if accessing from the wrong domain (e.g. "www." omitted but domain was configured with)
-                       $applicationObject = ApplicationHandler::getInstance()->getApplication($application);
-                       if ($applicationObject->domainName != $_SERVER['HTTP_HOST']) {
-                               // build URL, e.g. http://example.net/forum/
-                               $url = FileUtil::addTrailingSlash(RouteHandler::getProtocol() . $applicationObject->domainName . RouteHandler::getPath());
-                               
-                               // add path info, e.g. index.php/Board/2/
-                               $pathInfo = RouteHandler::getPathInfo();
-                               if (!empty($pathInfo)) {
-                                       $url .= 'index.php' . $pathInfo;
-                               }
                                
-                               // query string, e.g. ?foo=bar
-                               if (!empty($_SERVER['QUERY_STRING'])) {
-                                       $url .= '?' . $_SERVER['QUERY_STRING'];
+                               // check if accessing from the wrong domain (e.g. "www." omitted but domain was configured with)
+                               $applicationObject = ApplicationHandler::getInstance()->getApplication($application);
+                               if ($applicationObject->domainName != $_SERVER['HTTP_HOST']) {
+                                       // build URL, e.g. http://example.net/forum/
+                                       $url = FileUtil::addTrailingSlash(RouteHandler::getProtocol() . $applicationObject->domainName . RouteHandler::getPath());
+                                       
+                                       // add path info, e.g. index.php/Board/2/
+                                       $pathInfo = RouteHandler::getPathInfo();
+                                       if (!empty($pathInfo)) {
+                                               $url .= 'index.php' . $pathInfo;
+                                       }
+                                       
+                                       // query string, e.g. ?foo=bar
+                                       if (!empty($_SERVER['QUERY_STRING'])) {
+                                               $url .= '?' . $_SERVER['QUERY_STRING'];
+                                       }
+                                       
+                                       HeaderUtil::redirect($url, true);
+                                       exit;
                                }
-                               
-                               HeaderUtil::redirect($url, true);
-                               exit;
                        }
                        
                        $controller = $routeData['controller'];