Index: trunk/extensions/SemanticMediaWiki/includes/articlepages/SMW_OrderedListPage.php |
— | — | @@ -76,7 +76,7 @@ |
77 | 77 | global $wgOut; |
78 | 78 | $this->clearPageState(); |
79 | 79 | $this->doQuery(); |
80 | | - $r = "<br style=\"clear:both;\"/>\n" . $this->getPages(); |
| 80 | + $r = "<br id=\"smwfootbr\"/>\n" . $this->getPages(); |
81 | 81 | return $r; |
82 | 82 | } |
83 | 83 | |
— | — | @@ -94,7 +94,7 @@ |
95 | 95 | protected abstract function doQuery(); |
96 | 96 | |
97 | 97 | /** |
98 | | - * Generates the headline for the page list and the HTML encoded list of pages which |
| 98 | + * Generates the headline for the page list and the HTML encoded list of pages which |
99 | 99 | * shall be shown. |
100 | 100 | */ |
101 | 101 | protected abstract function getPages(); |
— | — | @@ -106,7 +106,7 @@ |
107 | 107 | global $wgUser, $wgLang; |
108 | 108 | $sk = $this->getSkin(); |
109 | 109 | $limitText = $wgLang->formatNum( $this->limit ); |
110 | | - |
| 110 | + |
111 | 111 | $ac = count($this->articles); |
112 | 112 | if ($this->until != '') { |
113 | 113 | if ($ac > $this->limit) { // (we assume that limit is at least 1) |
Index: trunk/extensions/SemanticMediaWiki/skins/SMW_custom.css |
— | — | @@ -16,6 +16,10 @@ |
17 | 17 | margin-top: 0.5em; |
18 | 18 | } |
19 | 19 | |
| 20 | +#smwfootbr { /* terminate page contents when inserting stuff below a page, typically used in <br> */ |
| 21 | + clear: both; |
| 22 | +} |
| 23 | + |
20 | 24 | /* tables for inline queries */ |
21 | 25 | |
22 | 26 | table.smwtable{ |