Escape global namespaced get_app() calls

- Add deprecated status
This commit is contained in:
Hypolite Petovan 2018-12-27 19:22:35 -05:00
parent b8030313e5
commit 5e1ceb57de
52 changed files with 135 additions and 133 deletions

View file

@ -327,6 +327,8 @@ if (!defined('CURLE_OPERATION_TIMEDOUT')) {
*
* Useful in functions which require it but don't get it passed to them
*
* @deprecated since version 2018.09
* @see BaseObject::getApp()
* @return App
*/
function get_app()
@ -457,7 +459,7 @@ function notice($s)
return;
}
$a = get_app();
$a = \get_app();
if (empty($_SESSION['sysmsg'])) {
$_SESSION['sysmsg'] = [];
}
@ -475,7 +477,7 @@ function notice($s)
*/
function info($s)
{
$a = get_app();
$a = \get_app();
if (local_user() && PConfig::get(local_user(), 'system', 'ignore_info')) {
return;
@ -538,7 +540,7 @@ function feed_birthday($uid, $tz)
*/
function is_site_admin()
{
$a = get_app();
$a = \get_app();
$admin_email = Config::get('config', 'admin_email');
@ -647,7 +649,7 @@ function get_server()
function get_temppath()
{
$a = get_app();
$a = \get_app();
$temppath = Config::get("system", "temppath");