Maybe no longer needed: converted $a->get_baseurl() to App::get_baseurl(). #3010

Signed-off-by: Roland Häder <roland@mxchange.org>
This commit is contained in:
Roland Häder 2016-12-14 11:55:12 +01:00
parent cee169997e
commit 582b8db8e8

View file

@ -1478,10 +1478,11 @@ function clean_urls() {
} }
function z_path() { function z_path() {
$a = get_app(); $base = App::get_baseurl();
$base = $a->get_baseurl();
if(! clean_urls()) if(! clean_urls())
$base .= '/?q='; $base .= '/?q=';
return $base; return $base;
} }
@ -1491,10 +1492,10 @@ function z_path() {
* @see App::get_baseurl() * @see App::get_baseurl()
* *
* @return string * @return string
* @TODO Maybe super-flous and deprecated? Seems to only wrap App::get_baseurl()
*/ */
function z_root() { function z_root() {
$a = get_app(); return App::get_baseurl();
return $a->get_baseurl();
} }
/** /**