mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-28 02:43:22 +01:00
fix PHP Fatal Error: Call to undefined function each()
This commit is contained in:
parent
53dcf98689
commit
4720891e59
@ -616,7 +616,7 @@ function do_editchangelog()
|
|||||||
$revision = null;
|
$revision = null;
|
||||||
if (substr($branch_url, -4) == '.git')
|
if (substr($branch_url, -4) == '.git')
|
||||||
{
|
{
|
||||||
list($path) = each($modules);
|
$path = key($modules);
|
||||||
$changelog .= get_changelog_from_git($path, $config['editchangelog'], $last_tag);
|
$changelog .= get_changelog_from_git($path, $config['editchangelog'], $last_tag);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user