X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=boot.php;h=99eb3d0c1708967d203d0b620aa61cd3c86f2149;hb=159a7bda85d1514ed3a8d67cea7deca6ed96b437;hp=070ddd64d6527e29666cce016c2b3653a6be65c7;hpb=b66d4b8cbd52773a9fb2682e3c3335b118f6abb0;p=friendica.git diff --git a/boot.php b/boot.php index 070ddd64d6..99eb3d0c17 100644 --- a/boot.php +++ b/boot.php @@ -12,7 +12,7 @@ require_once('library/Mobile_Detect/Mobile_Detect.php'); require_once('include/features.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); -define ( 'FRIENDICA_VERSION', '3.1.1684' ); +define ( 'FRIENDICA_VERSION', '3.1.1743' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DB_UPDATE_VERSION', 1163 ); define ( 'EOL', "
\r\n" ); @@ -139,6 +139,8 @@ define ( 'NETWORK_LINKEDIN', 'lnkd'); // LinkedIn define ( 'NETWORK_XMPP', 'xmpp'); // XMPP define ( 'NETWORK_MYSPACE', 'mysp'); // MySpace define ( 'NETWORK_GPLUS', 'goog'); // Google+ +define ( 'NETWORK_PUMPIO', 'pump'); // pump.io +define ( 'NETWORK_TWITTER', 'twit'); // Twitter define ( 'NETWORK_PHANTOM', 'unkn'); // Place holder @@ -161,6 +163,8 @@ $netgroup_ids = array( NETWORK_XMPP => (-10), NETWORK_MYSPACE => (-11), NETWORK_GPLUS => (-12), + NETWORK_PUMPIO => (-13), + NETWORK_TWITTER => (-14), NETWORK_PHANTOM => (-127), ); @@ -423,6 +427,7 @@ if(! class_exists('App')) { $this->performance["start"] = microtime(true); $this->performance["database"] = 0; $this->performance["network"] = 0; + $this->performance["file"] = 0; $this->performance["rendering"] = 0; $this->performance["parser"] = 0; $this->performance["marktime"] = 0; @@ -436,6 +441,14 @@ if(! class_exists('App')) { startup(); + set_include_path( + 'include' . PATH_SEPARATOR + . 'library' . PATH_SEPARATOR + . 'library/phpsec' . PATH_SEPARATOR + . 'library/langdet' . PATH_SEPARATOR + . '.' ); + + $this->scheme = 'http'; if(x($_SERVER,'HTTPS') && $_SERVER['HTTPS']) $this->scheme = 'https'; @@ -470,15 +483,8 @@ if(! class_exists('App')) { $argc --; } - set_include_path( - "include/$this->hostname" . PATH_SEPARATOR - . 'include' . PATH_SEPARATOR - . 'library' . PATH_SEPARATOR - . 'library/phpsec' . PATH_SEPARATOR - . 'library/langdet' . PATH_SEPARATOR - . '.' ); + set_include_path("include/$this->hostname" . PATH_SEPARATOR . get_include_path()); - if((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,2) === "q=") { $this->query_string = substr($_SERVER['QUERY_STRING'],2); // removing trailing / - maybe a nginx problem @@ -633,7 +639,11 @@ if(! class_exists('App')) { function set_pager_itemspage($n) { $this->pager['itemspage'] = ((intval($n) > 0) ? intval($n) : 0); $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage']; - + } + + function set_pager_page($n) { + $this->pager['page'] = $n; + $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage']; } function init_pagehead() { @@ -1955,6 +1965,13 @@ if(! function_exists('profile_tabs')){ 'title' => t('Photo Albums'), 'id' => 'photo-tab', ), + array( + 'label' => t('Videos'), + 'url' => $a->get_baseurl() . '/videos/' . $nickname, + 'sel' => ((!isset($tab)&&$a->argv[0]=='videos')?'active':''), + 'title' => t('Videos'), + 'id' => 'video-tab', + ), ); if ($is_owner){ @@ -2098,10 +2115,7 @@ function random_digits($digits) { function get_cachefile($file, $writemode = true) { $cache = get_config("system","itemcache"); - if ($cache == "") - return(""); - - if (!is_dir($cache)) + if ((! $cache) || (! is_dir($cache))) return(""); $subfolder = $cache."/".substr($file, 0, 2);