Index: trunk/extensions/LabeledSectionTransclusion/lst.php |
— | — | @@ -359,8 +359,8 @@ |
360 | 360 | $text = ''; |
361 | 361 | $node = $root->getFirstChild(); |
362 | 362 | while ( $node ) { |
363 | | - // If name of begin node was specified find it |
364 | | - // otherwise transclude everything from the beginning of the page |
| 363 | + // If the name of the begin node was specified, find it. |
| 364 | + // Otherwise transclude everything from the beginning of the page. |
365 | 365 | if ( $begin != '' ) { |
366 | 366 | // Find the begin node |
367 | 367 | $found = false; |
— | — | @@ -404,9 +404,8 @@ |
405 | 405 | if ( !$found ) { |
406 | 406 | break; |
407 | 407 | } elseif ( $begin == '' ) { |
408 | | - // When end node was found and |
409 | | - // text is transcluded from the beginning of the page |
410 | | - // finish the transclusion |
| 408 | + // When the end node was found and text is transcluded from |
| 409 | + // the beginning of the page, finish the transclusion |
411 | 410 | break; |
412 | 411 | } |
413 | 412 | |