'page_with_news' is deprecated now
[core.git] / inc / classes / main / resolver / controller / class_BaseControllerResolver.php
index 964024dda6c630619366a3a3ee9ebcab10310744..ce2da51695c5c9f8389f0bdbee339bdc00f5ed14 100644 (file)
@@ -103,14 +103,8 @@ class BaseControllerResolver extends BaseResolver {
                                // This class does exist. :-)
                                $isValid = true;
                        } elseif (($this->getClassName() != $this->controllerPrefix.'DefaultController') && ($this->getClassName() != $this->controllerPrefix.'DefaultNewsController')) {
-                               // Do we have news?
-                               if ($this->getConfigInstance()->readConfig('page_with_news') == $this->getApplicationInstance()->getRequestInstance()->getRequestElement('page')) {
-                                       // Yes, display news in home then set default controller with news
-                                       $this->setClassName($this->controllerPrefix . 'DefaultNewsController');
-                               } else {
-                                       // No news at home page or non-news page
-                                       $this->setClassName($this->controllerPrefix . 'DefaultController');
-                               }
+                               // Set default controller
+                               $this->setClassName($this->controllerPrefix . 'DefaultController');
                        } else {
                                // All is tried, give it up here
                                throw new DefaultControllerException($this, self::EXCEPTION_DEFAULT_CONTROLLER_GONE);