Browse Source

that makes more sense

experimental/ZendEngine2
Tomas V.V.Cox 25 years ago
parent
commit
8e18d716f8
  1. 2
      pear/scripts/pear.in

2
pear/scripts/pear.in

@ -390,11 +390,11 @@ function present_array(&$arr, $keys = null)
if (is_array($arr[$k])) {
foreach ($arr[$k] as $i => $value) {
$x = "$k #$i";
$cont = array();
foreach(array_keys($value) as $val) {
$cont[] = "$val=" . $value[$val];
}
$v = implode(", ", $cont);
$cont = array();
printf($format_string, $x, $v);
}
continue;

Loading…
Cancel
Save