Index: trunk/extensions/SemanticMediaWiki/includes/SMW_QP_List.php |
— | — | @@ -192,7 +192,7 @@ |
193 | 193 | } |
194 | 194 | $params[] = array('name' => 'template', 'type' => 'string', 'description' => wfMsg('smw_paramdesc_template')); |
195 | 195 | if (! $plainlist) { |
196 | | - $params[] = array('name' => 'columns', 'type' => 'int', 'description' => wfMsg('smw_paramdesc_columns')); |
| 196 | + $params[] = array('name' => 'columns', 'type' => 'int', 'description' => wfMsg('smw_paramdesc_columns', 1)); |
197 | 197 | } |
198 | 198 | return $params; |
199 | 199 | } |
Index: trunk/extensions/SemanticMediaWiki/includes/SMW_QP_Category.php |
— | — | @@ -163,7 +163,7 @@ |
164 | 164 | public function getParameters() { |
165 | 165 | $params = parent::getParameters(); |
166 | 166 | $params = array_merge($params, parent::textDisplayParameters()); |
167 | | - $params[] = array('name' => 'columns', 'type' => 'int', 'description' => wfMsg('smw_paramdesc_columns')); |
| 167 | + $params[] = array('name' => 'columns', 'type' => 'int', 'description' => wfMsg('smw_paramdesc_columns', 3)); |
168 | 168 | return $params; |
169 | 169 | } |
170 | 170 | |