r84969 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r84968‎ | r84969 | r84970 >
Date:17:03, 29 March 2011
Author:jeroendedauw
Status:deferred
Tags:
Comment:
let's prevent infinite loops
Modified paths:
  • /trunk/extensions/SemanticResultFormats/GraphViz/SRF_Graph.php (modified) (history)

Diff [purge]

Index: trunk/extensions/SemanticResultFormats/GraphViz/SRF_Graph.php
@@ -253,6 +253,7 @@
254254 * @return string
255255 */
256256 protected function getWordWrappedText( $text, $charLimit ) {
 257+ $charLimit = max( array( $charLimit, 1 ) );
257258 $segments = array();
258259
259260 while ( strlen( $text ) > $charLimit ) {

Status & tagging log