Index: trunk/phase3/RELEASE-NOTES-1.18 |
— | — | @@ -656,6 +656,8 @@ |
657 | 657 | * (bug 30817) Restored linktrail for kk (Kazakh) |
658 | 658 | * (bug 27398) Add $wgExtraGenderNamespaces for configured gendered namespaces |
659 | 659 | * (bug 30846) New LanguageOs class |
| 660 | +* (bug 31913) Special:MostLinkedTemplates had an incorrect GROUP BY clause |
| 661 | + under Microsoft SQL. |
660 | 662 | |
661 | 663 | === Other changes in 1.18 === |
662 | 664 | * Removed legacy wgAjaxWatch javascript global object, no longer in use. |
Index: trunk/phase3/includes/specials/SpecialMostlinkedtemplates.php |
— | — | @@ -68,7 +68,7 @@ |
69 | 69 | 'tl_title AS title', |
70 | 70 | 'COUNT(*) AS value' ), |
71 | 71 | 'conds' => array ( 'tl_namespace' => NS_TEMPLATE ), |
72 | | - 'options' => array( 'GROUP BY' => 'namespace, title' ) |
| 72 | + 'options' => array( 'GROUP BY' => 'tl_namespace, tl_title' ) |
73 | 73 | ); |
74 | 74 | } |
75 | 75 | |