1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/10824] Use correct language and style composer.json data

PHPBB3-10824
This commit is contained in:
Marc Alexander
2018-12-28 16:38:09 +01:00
parent 204f81c6f7
commit adf9f49a42
3 changed files with 32 additions and 17 deletions

View File

@@ -101,10 +101,12 @@ class language_file_helper
}
return array(
'iso' => $data['extra']['language-iso'],
'name' => $data['extra']['english-name'],
'local_name' => $data['extra']['local-name'],
'author' => implode(', ', $authors),
'iso' => $data['extra']['language-iso'],
'name' => $data['extra']['english-name'],
'local_name' => $data['extra']['local-name'],
'author' => implode(', ', $authors),
'version' => $data['version'],
'phpbb_version' => $data['extra']['phpbb-version'],
);
}
}