]> git.mxchange.org Git - friendica.git/commitdiff
Reverted to old controller
authorMichael <heluecht@pirati.ca>
Thu, 4 Jan 2018 13:05:50 +0000 (13:05 +0000)
committerMichael <heluecht@pirati.ca>
Thu, 4 Jan 2018 13:05:50 +0000 (13:05 +0000)
index.php

index e1995016bab66276d1e96b44800c58c560f602b6..a20646cb0f06253622413a2d26c1651a6815884e 100644 (file)
--- a/index.php
+++ b/index.php
@@ -253,13 +253,9 @@ if (strlen($a->module)) {
        }
 
        // Controller class routing
-       $classes = ['Friendica\\Module\\' . ucfirst($a->module), 'Friendica\\Module\\' . ucfirst($a->module) . 'Module'];
-       foreach ($classes as $class) {
-               if (!$a->module_loaded && class_exists($class)) {
-                       $a->module_class = $class;
-                       $a->module_loaded = true;
-                       break;
-               }
+       if (! $a->module_loaded && class_exists('Friendica\\Module\\' . ucfirst($a->module))) {
+               $a->module_class = 'Friendica\\Module\\' . ucfirst($a->module);
+               $a->module_loaded = true;
        }
 
        /**