Index: trunk/extensions/SubPageList/RELEASE-NOTES |
— | — | @@ -5,9 +5,11 @@ |
6 | 6 | |
7 | 7 | |
8 | 8 | === Version 0.3 === |
9 | | -2011-0x-xx |
| 9 | +2011-03-xx |
10 | 10 | |
11 | 11 | * Fix to display of the first list item. |
| 12 | +* Fixed inverted behaviour of the kidsonly parameter. |
| 13 | +* Fixed query issue when using PostGres. |
12 | 14 | |
13 | 15 | === Version 0.2 === |
14 | 16 | 2011-01-24 |
Index: trunk/extensions/SubPageList/SubPageList.php |
— | — | @@ -35,7 +35,7 @@ |
36 | 36 | die( '<b>Error:</b> You need to have <a href="http://www.mediawiki.org/wiki/Extension:Validator">Validator</a> installed in order to use <a href="http://www.mediawiki.org/wiki/Extension:SubPageList">SubPageList</a>.<br />' ); |
37 | 37 | } |
38 | 38 | |
39 | | -define( 'SPL_VERSION', '0.3 alpha' ); |
| 39 | +define( 'SPL_VERSION', '0.3 rc' ); |
40 | 40 | |
41 | 41 | $wgExtensionCredits['parserhook'][] = array( |
42 | 42 | 'path' => __FILE__, |
Index: trunk/extensions/SubPageList/SubPageList.class.php |
— | — | @@ -206,7 +206,7 @@ |
207 | 207 | $conditions['page_is_redirect'] = 0; |
208 | 208 | |
209 | 209 | // TODO: this is rather resource heavy |
210 | | - $conditions[] = '`page_title` ' . $dbr->buildLike( $title->getDBkey() . '/', $dbr->anyString() ); |
| 210 | + $conditions[] = 'page_title ' . $dbr->buildLike( $title->getDBkey() . '/', $dbr->anyString() ); |
211 | 211 | |
212 | 212 | $fields = array(); |
213 | 213 | $fields[] = 'page_title'; |