diff options
author | redmatrix <git@macgirvin.com> | 2016-04-02 13:52:16 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-04-02 13:52:16 -0700 |
commit | d09694587d15ce093149cc2321a63b9923554345 (patch) | |
tree | 4db2b795f380fca6c01d5a75e04ba045ce34b672 /Zotlabs | |
parent | 7660afdb0f46fe9c3bc97a01a726de474ace3225 (diff) | |
download | volse-hubzilla-d09694587d15ce093149cc2321a63b9923554345.tar.gz volse-hubzilla-d09694587d15ce093149cc2321a63b9923554345.tar.bz2 volse-hubzilla-d09694587d15ce093149cc2321a63b9923554345.zip |
typo in router
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Web/Router.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Web/Router.php b/Zotlabs/Web/Router.php index e2e920f39..29f2b5206 100644 --- a/Zotlabs/Web/Router.php +++ b/Zotlabs/Web/Router.php @@ -36,7 +36,7 @@ class Router { * */ - if(is_array(\App::$plugins) && in_array(\App::$module,\App::$plugins) && file_exists("addon/{$module}/{\$module}.php")) { + if(is_array(\App::$plugins) && in_array($module,\App::$plugins) && file_exists("addon/{$module}/{$module}.php")) { include_once("addon/{$module}/{$module}.php"); if(function_exists($module . '_module')) \App::$module_loaded = true; |