aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-03-28 17:00:44 -0700
committerMario Vavti <mario@mariovavti.com>2017-03-31 10:31:29 +0200
commita20fd4d4638fb07b6c1fcb652ce110a5ed98382d (patch)
tree1c86533a233240ed72bd971dd107d9f5d894db6a /boot.php
parentbfd506f184790250c77bf487db2fd4d4b069e9ec (diff)
downloadvolse-hubzilla-a20fd4d4638fb07b6c1fcb652ce110a5ed98382d.tar.gz
volse-hubzilla-a20fd4d4638fb07b6c1fcb652ce110a5ed98382d.tar.bz2
volse-hubzilla-a20fd4d4638fb07b6c1fcb652ce110a5ed98382d.zip
get rid of some more deprecated uses of $a
Diffstat (limited to 'boot.php')
-rwxr-xr-xboot.php12
1 files changed, 5 insertions, 7 deletions
diff --git a/boot.php b/boot.php
index a075bf5d3..578c6b98a 100755
--- a/boot.php
+++ b/boot.php
@@ -2018,7 +2018,7 @@ function curPageURL() {
*
* @return mixed
*/
-function get_custom_nav(&$a, $navname) {
+function get_custom_nav($navname) {
if (! $navname)
return App::$page['nav'];
// load custom nav menu by name here
@@ -2030,7 +2030,6 @@ function get_custom_nav(&$a, $navname) {
* If there is no parsed Comanche template already load a module's pdl file
* and parse it with Comanche.
*
- * @param App &$a global application object
*/
function load_pdl() {
@@ -2059,7 +2058,7 @@ function load_pdl() {
}
-function exec_pdl(&$a) {
+function exec_pdl() {
if(App::$pdl) {
App::$comanche->parse(App::$pdl,1);
}
@@ -2071,11 +2070,10 @@ function exec_pdl(&$a) {
*
* Build the page - now that we have all the components
*
- * @param App &$a global application object
*/
-function construct_page(&$a) {
+function construct_page() {
- exec_pdl($a);
+ exec_pdl();
$comanche = ((count(App::$layout)) ? true : false);
@@ -2091,7 +2089,7 @@ function construct_page(&$a) {
if ($comanche) {
if (App::$layout['nav']) {
- App::$page['nav'] = get_custom_nav($a, App::$layout['nav']);
+ App::$page['nav'] = get_custom_nav(App::$layout['nav']);
}
}