X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=boot.php;h=7b4c72f19c80724e93c1700c04b41c6aa44e317e;hb=06157c2ab0d61347c05fbf9d4d1149fbfaaebb7d;hp=be217eadfc5ccfaea0334278c31d8d79e58776be;hpb=e7ee3d7200b5636ba97dac8f6e71e9ba4fa7db22;p=friendica.git diff --git a/boot.php b/boot.php index be217eadfc..7b4c72f19c 100644 --- a/boot.php +++ b/boot.php @@ -35,7 +35,7 @@ use Friendica\Util\DateTimeFormat; define('FRIENDICA_PLATFORM', 'Friendica'); define('FRIENDICA_CODENAME', 'The Tazmans Flax-lily'); -define('FRIENDICA_VERSION', '2018.12-rc'); +define('FRIENDICA_VERSION', '2019.01'); define('DFRN_PROTOCOL_VERSION', '2.23'); define('NEW_UPDATE_ROUTINE_VERSION', 1170); @@ -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"); @@ -868,4 +870,4 @@ function rdirname($path, $levels = 1) } else { return dirname($path); } -} \ No newline at end of file +}