aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2023-09-20 10:45:33 +0000
committerMario <mario@mariovavti.com>2023-09-20 10:45:33 +0000
commitd88c67eba37569a95691bc967046eed318e39b46 (patch)
treefe65946b365d6ea8a97cce1a0affd5f5ce3f6cf5 /Zotlabs
parentbb38a90ddaa6f57397d62fd0414b4b9d6968f719 (diff)
downloadvolse-hubzilla-d88c67eba37569a95691bc967046eed318e39b46.tar.gz
volse-hubzilla-d88c67eba37569a95691bc967046eed318e39b46.tar.bz2
volse-hubzilla-d88c67eba37569a95691bc967046eed318e39b46.zip
deprecate the ancient $a variable
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Web/Router.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/Zotlabs/Web/Router.php b/Zotlabs/Web/Router.php
index a6a841ccb..2876fcc3c 100644
--- a/Zotlabs/Web/Router.php
+++ b/Zotlabs/Web/Router.php
@@ -224,7 +224,7 @@ class Router {
}
elseif(function_exists(App::$module . '_init')) {
$func = App::$module . '_init';
- $func($a);
+ $func();
}
}
@@ -257,13 +257,13 @@ class Router {
if(function_exists(str_replace('-', '_', $current_theme[0]) . '_init')) {
$func = str_replace('-', '_', $current_theme[0]) . '_init';
- $func($a);
+ $func();
}
elseif (x(App::$theme_info, 'extends') && file_exists('view/theme/' . App::$theme_info['extends'] . '/php/theme.php')) {
require_once('view/theme/' . App::$theme_info['extends'] . '/php/theme.php');
if(function_exists(str_replace('-', '_', App::$theme_info['extends']) . '_init')) {
$func = str_replace('-', '_', App::$theme_info['extends']) . '_init';
- $func($a);
+ $func();
}
}
@@ -275,7 +275,7 @@ class Router {
}
elseif(function_exists(App::$module . '_post')) {
$func = App::$module . '_post';
- $func($a);
+ $func();
}
}
@@ -289,7 +289,7 @@ class Router {
}
elseif(function_exists(App::$module . '_content')) {
$func = App::$module . '_content';
- $arr = array('content' => $func($a));
+ $arr = array('content' => $func());
}
}
call_hooks(App::$module . '_mod_aftercontent', $arr);