Index: trunk/extensions/SemanticMediaWiki/includes/SMW_QP_List.php |
— | — | @@ -59,7 +59,7 @@ |
60 | 60 | $header = '<' . $this->mFormat . '>'; |
61 | 61 | $footer = '</' . $this->mFormat . '>'; |
62 | 62 | $rowstart = '<li>'; |
63 | | - $rowend = '</li>'; |
| 63 | + $rowend = "</li>\n"; |
64 | 64 | $plainlist = false; |
65 | 65 | } else { // "list" and "template" format |
66 | 66 | $header = ''; |
— | — | @@ -150,7 +150,7 @@ |
151 | 151 | } |
152 | 152 | if ( $found_values ) $result .= ')'; |
153 | 153 | } |
154 | | - $result .= $rowend . "\n"; |
| 154 | + $result .= $rowend; |
155 | 155 | } |
156 | 156 | |
157 | 157 | // Make label for finding further results |
— | — | @@ -169,7 +169,7 @@ |
170 | 170 | $link->setParameter( $this->m_params['link'], 'link' ); |
171 | 171 | } |
172 | 172 | } |
173 | | - $result .= $rowstart . $link->getText( SMW_OUTPUT_WIKI, $this->mLinker ) . $rowend . "\n"; |
| 173 | + $result .= $rowstart . $link->getText( SMW_OUTPUT_WIKI, $this->mLinker ) . $rowend; |
174 | 174 | } |
175 | 175 | if ( $this->mColumns > 1 ) |
176 | 176 | $result .= '</div>' . "\n"; |