X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=boot.php;h=ecf83854ffba846952b810ddf26c2abed366243a;hb=e2b2778e0ab04edd649690b8f89e16909f0b624f;hp=1f9bb3412ad45d09a53ef1d000725888cf5ca3e5;hpb=5c5b564ade1b98fcb39a4baf56a4d7104f0aee7d;p=friendica.git diff --git a/boot.php b/boot.php index 1f9bb3412a..ecf83854ff 100644 --- a/boot.php +++ b/boot.php @@ -18,13 +18,12 @@ */ use Friendica\App; -use Friendica\BaseObject; use Friendica\Core\Config; use Friendica\Core\PConfig; use Friendica\Core\Protocol; use Friendica\Core\System; -use Friendica\Core\Session; use Friendica\Database\DBA; +use Friendica\DI; use Friendica\Model\Contact; use Friendica\Model\Term; use Friendica\Util\BasePath; @@ -32,7 +31,7 @@ use Friendica\Util\DateTimeFormat; define('FRIENDICA_PLATFORM', 'Friendica'); define('FRIENDICA_CODENAME', 'Dalmatian Bellflower'); -define('FRIENDICA_VERSION', '2019.12-rc'); +define('FRIENDICA_VERSION', '2020.03-dev'); define('DFRN_PROTOCOL_VERSION', '2.23'); define('NEW_UPDATE_ROUTINE_VERSION', 1170); @@ -241,12 +240,12 @@ 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() + * @see DI::app() * @return App */ function get_app() { - return BaseObject::getApp(); + return DI::app(); } /**