diff options
author | Mario <mario@mariovavti.com> | 2020-02-07 11:24:01 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-02-07 11:24:01 +0100 |
commit | 33be244d8a4ab62d52f7715b5f95ed293be79504 (patch) | |
tree | 16bbe5cbdd350d4bd37598855afdbc305b266381 | |
parent | 82acfb75a1e79c9dddc60fbc20bc1989fc495ce4 (diff) | |
parent | ca75619518590fece646a582ee91b218725df85d (diff) | |
download | volse-hubzilla-33be244d8a4ab62d52f7715b5f95ed293be79504.tar.gz volse-hubzilla-33be244d8a4ab62d52f7715b5f95ed293be79504.tar.bz2 volse-hubzilla-33be244d8a4ab62d52f7715b5f95ed293be79504.zip |
Merge branch 'patch-1' into 'dev'
Add 'hook call' to be used for new addon 'NavBanner_options'
See merge request hubzilla/core!1827
-rw-r--r-- | include/nav.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/nav.php b/include/nav.php index 672cc2689..bd4d000f7 100644 --- a/include/nav.php +++ b/include/nav.php @@ -59,6 +59,8 @@ function nav($template = 'default') { if($banner === false) $banner = get_config('system','sitename'); + + call_hooks('get_banner',$banner); App::$page['header'] .= replace_macros(get_markup_template('hdr.tpl'), array( //we could additionally use this to display important system notifications e.g. for updates |