Skip to content

Commit a68ad37

Browse files
Zipher04dregad
authored andcommitted
HgWeb: correct function map() to array_map() (#213)
1 parent 0ff0934 commit a68ad37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SourceHgWeb/SourceHgWeb.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public function import_full( $p_repo ) {
153153
$t_branch = 'default';
154154
}
155155

156-
$t_branches = map( 'trim', explode( ',', $t_branch ) );
156+
$t_branches = array_map( 'trim', explode( ',', $t_branch ) );
157157
$t_changesets = array();
158158

159159
$t_changeset_table = plugin_table( 'changeset', 'Source' );

0 commit comments

Comments
 (0)