Index: trunk/extensions/SemanticMediaWiki/includes/SMW_QP_List.php |
— | — | @@ -9,8 +9,8 @@ |
10 | 10 | /** |
11 | 11 | * New implementation of SMW's printer for results in lists. |
12 | 12 | * |
13 | | - * Somewhat confusing code, since one has to iterate through lists, inserting texts |
14 | | - * in between their elements depending on whether the element is the first that is |
| 13 | + * Somewhat confusing code, since one has to iterate through lists, inserting texts |
| 14 | + * in between their elements depending on whether the element is the first that is |
15 | 15 | * printed, the first that is printed in parentheses, or the last that will be printed. |
16 | 16 | * Maybe one could further simplify this. |
17 | 17 | * |
— | — | @@ -42,7 +42,7 @@ |
43 | 43 | if ( ('ul' == $this->mFormat) || ('ol' == $this->mFormat) ) { |
44 | 44 | $header = '<' . $this->mFormat . '>'; |
45 | 45 | $footer = '</' . $this->mFormat . '>'; |
46 | | - $rowstart = "\n\t<li>"; |
| 46 | + $rowstart = '<li>'; |
47 | 47 | $rowend = '</li>'; |
48 | 48 | $plainlist = false; |
49 | 49 | } else { |