]> git.mxchange.org Git - friendica.git/commitdiff
Revert "Merge pull request #2319 from stieben/develop"
authorFabrixxm <fabrix.xm@gmail.com>
Tue, 9 Feb 2016 08:39:29 +0000 (09:39 +0100)
committerFabrixxm <fabrix.xm@gmail.com>
Tue, 9 Feb 2016 08:39:29 +0000 (09:39 +0100)
This reverts commit 9330a6994c1b9aee49a482efe32e84ca1a944c9b, reversing
changes made to ecfb6ec92460e3cd401789e44cd48a8bc503d762.

But it keeps changes to doc/Plugins.md and doc/de/Plugins.md

doc/themes.md
index.php

index ec3a76ac289a472088350110335ee2d60a317062..add44c776bc5f130b6bc842891101e970de5dd9c 100644 (file)
@@ -59,19 +59,7 @@ The same rule applies to the JavaScript files found in
 
 they will be overwritten by files in
 
-    /view/theme/**your-theme-name**/js
-
-### Modules
-
-You have the freedom to override core modules found in
-
-    /mod
-
-They will be overwritten by files in
-
-    /view/theme/**your-theme-name**/mod
-
-Be aware that you can break things easily here if you don't know what you do. Also notice that you can override parts of the module – functions not defined in your theme module will be loaded from the core module.
+    /view/theme/**your-theme-name**/js.
 
 ## Expand an existing Theme
 
@@ -300,4 +288,4 @@ The default file is in
     /view/default.php
 
 if you want to change it, say adding a 4th column for banners of your favourite FLOSS projects, place a new default.php file in your theme directory.
-As with the theme.php file, you can use the properties of the $a variable with holds the friendica application to decide what content is displayed.
+As with the theme.php file, you can use the properties of the $a variable with holds the friendica application to decide what content is displayed.
\ No newline at end of file
index 2b1053cc1b7b976588d22a69168b5a87d293f010..bf926d1fe76f166c7c240036560c86223d8f7814 100644 (file)
--- a/index.php
+++ b/index.php
@@ -233,16 +233,7 @@ if(strlen($a->module)) {
        }
 
        /**
-        * If not, next look for module overrides by the theme
-        */
-
-       if((! $a->module_loaded) && (file_exists("view/theme/" . current_theme() . "/mod/{$a->module}.php"))) {
-               include_once("view/theme/" . current_theme() . "/mod/{$a->module}.php");
-               // We will not set module_loaded to true to allow for partial overrides.
-       }
-
-       /**
-        * Finally, look for a 'standard' program module in the 'mod' directory
+        * If not, next look for a 'standard' program module in the 'mod' directory
         */
 
        if((! $a->module_loaded) && (file_exists("mod/{$a->module}.php"))) {