aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2017-03-24 23:19:54 +0100
committerTristan Darricau <github@nicofuma.fr>2017-03-24 23:19:54 +0100
commite86f199d165367440d376453b2480f5ba3bff34f (patch)
tree24829610a6a7cfb2d73be4ea0df3f6bd4fa4a7ed /phpBB/phpbb
parent2af371d2f4486453af926af1e19908a441798319 (diff)
parent827ded82b8110fd2c587d9d7c84731ee7215b166 (diff)
downloadforums-e86f199d165367440d376453b2480f5ba3bff34f.tar
forums-e86f199d165367440d376453b2480f5ba3bff34f.tar.gz
forums-e86f199d165367440d376453b2480f5ba3bff34f.tar.bz2
forums-e86f199d165367440d376453b2480f5ba3bff34f.tar.xz
forums-e86f199d165367440d376453b2480f5ba3bff34f.zip
Merge branch '3.1.x' into 3.2.x
* 3.1.x: [ticket/15143] Fix display of version update in ACP
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/version_helper.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/phpbb/version_helper.php b/phpBB/phpbb/version_helper.php
index f80d2b16fc..fb330df26f 100644
--- a/phpBB/phpbb/version_helper.php
+++ b/phpBB/phpbb/version_helper.php
@@ -181,7 +181,7 @@ class version_helper
$self = $this;
$current_version = $this->current_version;
- // Filter out any versions less than to the current version
+ // Filter out any versions less than the current version
$versions = array_filter($versions, function($data) use ($self, $current_version) {
return $self->compare($data['current'], $current_version, '>=');
});
@@ -215,7 +215,7 @@ class version_helper
$self = $this;
$current_version = $this->current_version;
- // Filter out any versions less than to the current version
+ // Filter out any versions less than the current version
$versions = array_filter($versions, function($data) use ($self, $current_version) {
return $self->compare($data['current'], $current_version, '>=');
});
@@ -245,7 +245,7 @@ class version_helper
*
* @param bool $force_update Ignores cached data. Defaults to false.
* @param bool $force_cache Force the use of the cache. Override $force_update.
- * @return string
+ * @return array
* @throws version_check_exception
*/
public function get_suggested_updates($force_update = false, $force_cache = false)
@@ -266,7 +266,7 @@ class version_helper
*
* @param bool $force_update Ignores cached data. Defaults to false.
* @param bool $force_cache Force the use of the cache. Override $force_update.
- * @return string Version info
+ * @return array Version info
* @throws version_check_exception
*/
public function get_versions_matching_stability($force_update = false, $force_cache = false)
@@ -286,7 +286,7 @@ class version_helper
*
* @param bool $force_update Ignores cached data. Defaults to false.
* @param bool $force_cache Force the use of the cache. Override $force_update.
- * @return string Version info, includes stable and unstable data
+ * @return array Version info, includes stable and unstable data
* @throws version_check_exception
*/
public function get_versions($force_update = false, $force_cache = false)