Index: trunk/phase3/includes/api/ApiBase.php |
— | — | @@ -280,11 +280,11 @@ |
281 | 281 | $msg .= " $v\n"; |
282 | 282 | } else { |
283 | 283 | if ( is_array( $v ) ) { |
284 | | - $msgExample = implode( "\n", array_map( array( $this, 'indentExampleText' ), $v ) ); |
| 284 | + $msg .= implode( "\n", array_map( array( $this, 'indentExampleText' ), $v ) ); |
285 | 285 | } else { |
286 | | - $msgExample = " $v"; |
| 286 | + $msg .= " $v"; |
287 | 287 | } |
288 | | - $msg .= wordwrap( $msgExample, 100, "\n" ) . "\n $k"; |
| 288 | + $msg .= "\n $k"; |
289 | 289 | } |
290 | 290 | } |
291 | 291 | } |