Fixed indents

This commit is contained in:
Rob Lensen
2018-03-19 22:54:54 +01:00
parent 8d58b637c6
commit 8263335c42
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -1404,8 +1404,8 @@ function prepend_append_array_items($array, $prepend_str, $append_str)
create_function('&$s', '$s = "'.$prepend_str.'".$s."'.$append_str.'";')
);
*/
//New PHP 7.2 code
array_walk($array, function(&$value, $key) use($prepend_str,$append_str) { $value = "$prepend_str$value$append_str"; } );
//New PHP 7.2 code
array_walk($array, function(&$value, $key) use($prepend_str,$append_str) { $value = "$prepend_str$value$append_str"; } );
return $array;
}