X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=boot.php;h=1f4a2a06b53cf0abbf3792f07c7952807b191790;hb=10b0ce58612a02527231594b8d288af162163c6d;hp=7e3e9fee7b089261a9e728603ef4270591c1bf8b;hpb=bc5b54d7b79e40f6160d68e68b3ea3ec078b1d02;p=friendica.git diff --git a/boot.php b/boot.php index 7e3e9fee7b..1f4a2a06b5 100644 --- a/boot.php +++ b/boot.php @@ -11,7 +11,7 @@ require_once('include/cache.php'); require_once('library/Mobile_Detect/Mobile_Detect.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); -define ( 'FRIENDICA_VERSION', '3.0.1425' ); +define ( 'FRIENDICA_VERSION', '3.0.1427' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DB_UPDATE_VERSION', 1154 ); @@ -349,12 +349,22 @@ if(! class_exists('App')) { public $plugins; public $apps = array(); public $identities; - public $sourcename = ''; public $nav_sel; public $category; + // Allow themes to control internal parameters + // by changing App values in theme.php + // + // Possibly should make these part of the plugin + // system, but it seems like overkill to invoke + // all the plugin machinery just to change a couple + // of values + public $sourcename = ''; + public $videowidth = 425; + public $videoheight = 350; + private $scheme; private $hostname; private $baseurl;