1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

[ticket/15911] Resolve warnings when updating from 3.0.0 to latest

PHPBB3-15911
This commit is contained in:
Marc Alexander
2018-12-18 21:07:41 +01:00
parent a2407ce978
commit 304750a88b
2 changed files with 6 additions and 3 deletions

View File

@@ -58,9 +58,12 @@ class release_3_0_8_rc1 extends \phpbb\db\migration\migration
$result = $this->db->sql_query($sql);
$extension_groups_updated = array();
while ($lang_dir = $this->db->sql_fetchfield('lang_dir'))
while ($row = $this->db->sql_fetchrow($result))
{
$lang_dir = basename($lang_dir);
if (empty($row['lang_dir']))
continue;
$lang_dir = basename($row['lang_dir']);
// The language strings we need are either in language/.../acp/attachments.php
// in the update package if we're updating to 3.0.8-RC1 or later,