aboutsummaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorThomas Willingham <beardyunixer@beardyunixer.com>2014-11-04 19:40:00 +0000
committerThomas Willingham <beardyunixer@beardyunixer.com>2014-11-04 19:40:00 +0000
commit474e7fff0059352b82734dc81716b646873705d8 (patch)
tree1642796d4feee785e310485cd6d1c1a40e14f1f1 /index.php
parent8163230e779f0b2150d008d3144440b46566ac76 (diff)
downloadvolse-hubzilla-474e7fff0059352b82734dc81716b646873705d8.tar.gz
volse-hubzilla-474e7fff0059352b82734dc81716b646873705d8.tar.bz2
volse-hubzilla-474e7fff0059352b82734dc81716b646873705d8.zip
Remove legacy custom/
Diffstat (limited to 'index.php')
-rwxr-xr-xindex.php11
1 files changed, 0 insertions, 11 deletions
diff --git a/index.php b/index.php
index ae8a2e17d..7a61fd3b8 100755
--- a/index.php
+++ b/index.php
@@ -198,21 +198,10 @@ if(strlen($a->module)) {
if(! $a->module_loaded) {
- /*
- * Traditionally we looked in custom first, but we're leaning toward a convention where site
- * specific things are all in directories called 'site'. So custom will be going away.
- * There are a very small number of folks affected. You know who you are. Once you've got things sorted,
- * please remove the lines for "custom/" and push to the project repository.
- */
-
if(file_exists("mod/site/{$a->module}.php")) {
include_once("mod/site/{$a->module}.php");
$a->module_loaded = true;
}
- elseif(file_exists("custom/{$a->module}.php")) {
- include_once("custom/{$a->module}.php");
- $a->module_loaded = true;
- }
elseif(file_exists("mod/{$a->module}.php")) {
include_once("mod/{$a->module}.php");
$a->module_loaded = true;