Index: trunk/phase3/includes/specials/SpecialWantedtemplates.php |
— | — | @@ -42,7 +42,7 @@ |
43 | 43 | FROM $templatelinks LEFT JOIN |
44 | 44 | $page ON tl_title = page_title AND tl_namespace = page_namespace |
45 | 45 | WHERE page_title IS NULL AND tl_namespace = ". NS_TEMPLATE ." |
46 | | - GROUP BY tl_title |
| 46 | + GROUP BY tl_namespace, tl_title |
47 | 47 | "; |
48 | 48 | } |
49 | 49 | |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -209,7 +209,9 @@ |
210 | 210 | * (bug 17538) Use shorter URLs in <link> elements |
211 | 211 | * (bug 13778) Hidden input added to the search form so that using the Enter key |
212 | 212 | on IE will do a fulltext search like clicking the button does |
213 | | -* (bug 1061) CSS-added icons next to links display through the text and makes it unreadable in RTL |
| 213 | +* (bug 1061) CSS-added icons next to links display through the text and makes |
| 214 | + it unreadable in RTL |
| 215 | +* Special:Wantedtemplates now works on PostgreSQL |
214 | 216 | |
215 | 217 | == API changes in 1.15 == |
216 | 218 | * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions |