diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-05-29 21:45:54 -0400 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-05-29 21:45:54 -0400 |
commit | 8f0c3f0e9be676e08b886af2d872cf9d544680bd (patch) | |
tree | 4e7e532d8c9e35fa7db60d976c49392fae7e0685 | |
parent | 4b350b909025ba2102d5ad2c5ee32b3c4eecaa48 (diff) | |
parent | 3b2679db29077c33912edb085a24906708ad97ee (diff) | |
download | volse-hubzilla-8f0c3f0e9be676e08b886af2d872cf9d544680bd.tar.gz volse-hubzilla-8f0c3f0e9be676e08b886af2d872cf9d544680bd.tar.bz2 volse-hubzilla-8f0c3f0e9be676e08b886af2d872cf9d544680bd.zip |
Merge remote-tracking branch 'upstream/dev' into wiki
-rw-r--r-- | Zotlabs/Module/Setup.php | 4 | ||||
-rwxr-xr-x | boot.php | 2 | ||||
-rw-r--r-- | include/import.php | 2 | ||||
-rw-r--r-- | install/INSTALL.txt | 2 |
4 files changed, 6 insertions, 4 deletions
diff --git a/Zotlabs/Module/Setup.php b/Zotlabs/Module/Setup.php index 447f46ed6..c4878e217 100644 --- a/Zotlabs/Module/Setup.php +++ b/Zotlabs/Module/Setup.php @@ -384,8 +384,8 @@ class Setup extends \Zotlabs\Web\Controller { function check_php(&$phpath, &$checks) { $help = ''; - if(version_compare(PHP_VERSION, '5.4') < 0) { - $help .= t('PHP version 5.4 or greater is required.'); + if(version_compare(PHP_VERSION, '5.5') < 0) { + $help .= t('PHP version 5.5 or greater is required.'); $this->check_add($checks, t('PHP version'), false, false, $help); } @@ -1804,7 +1804,7 @@ function local_user() { function remote_channel() { if(session_id() && array_key_exists('authenticated',$_SESSION) && $_SESSION['authenticated'] - && array_key_exists('visitor_id',$_SESSION) && intval($_SESSION['visitor_id'])) + && array_key_exists('visitor_id',$_SESSION) && $_SESSION['visitor_id']) return $_SESSION['visitor_id']; return false; diff --git a/include/import.php b/include/import.php index a94c6c1ac..132306621 100644 --- a/include/import.php +++ b/include/import.php @@ -20,6 +20,8 @@ function import_channel($channel, $account_id, $seize) { dbesc($channel['channel_hash']), dbesc($channel['channel_address']) ); + if($r && $r[0]['channel_guid'] == $channel['channel_guid'] && $r[0]['channel_pubkey'] === $channel['channel_pubkey'] && $r[0]['channel_hash'] === $channel['channel_hash']) + return $r[0]; if(($r) || (check_webbie(array($channel['channel_address'])) !== $channel['channel_address'])) { if($r[0]['channel_guid'] === $channel['channel_guid'] || $r[0]['channel_hash'] === $channel['channel_hash']) { diff --git a/install/INSTALL.txt b/install/INSTALL.txt index 50d755f0f..670ad5af5 100644 --- a/install/INSTALL.txt +++ b/install/INSTALL.txt @@ -77,7 +77,7 @@ but may be an issue with nginx or other web server platforms. Example config scripts are available for these platforms in doc/install. Apache and nginx have the most support. - - PHP 5.4 or later. The later the better. + - PHP 5.5 or later. - PHP *command line* access with register_argc_argv set to true in the php.ini file - and with no hosting provider restrictions on the use of |