Index: trunk/phase3/CREDITS |
— | — | @@ -56,7 +56,6 @@ |
57 | 57 | |
58 | 58 | == Patch Contributors == |
59 | 59 | * Agbad |
60 | | -* Ahmad Sherif |
61 | 60 | * Brad Jorsch |
62 | 61 | * Brent G |
63 | 62 | * Daniel Arnold |
Index: trunk/phase3/includes/parser/Parser.php |
— | — | @@ -3327,9 +3327,6 @@ |
3328 | 3328 | wfDebug( __METHOD__.": [[MediaWiki:hidden-category-category]] is not a valid title!\n" ); |
3329 | 3329 | } |
3330 | 3330 | } |
3331 | | - if ( isset( $this->mDoubleUnderscores['ignoreunused'] ) && $this->mTitle->getNamespace() == NS_CATEGORY ) { |
3332 | | - $this->mOutput->setProperty( 'ignoreunused', 'y' ); |
3333 | | - } |
3334 | 3331 | # (bug 8068) Allow control over whether robots index a page. |
3335 | 3332 | # |
3336 | 3333 | # FIXME (bug 14899): __INDEX__ always overrides __NOINDEX__ here! This |
Index: trunk/phase3/includes/MagicWord.php |
— | — | @@ -159,7 +159,6 @@ |
160 | 160 | 'noeditsection', |
161 | 161 | 'newsectionlink', |
162 | 162 | 'hiddencat', |
163 | | - 'ignoreunused', |
164 | 163 | 'index', |
165 | 164 | 'noindex', |
166 | 165 | 'staticredirect', |
Index: trunk/phase3/includes/specials/SpecialUnusedcategories.php |
— | — | @@ -22,16 +22,14 @@ |
23 | 23 | function getSQL() { |
24 | 24 | $NScat = NS_CATEGORY; |
25 | 25 | $dbr = wfGetDB( DB_SLAVE ); |
26 | | - list( $categorylinks, $page, $page_props ) = $dbr->tableNamesN( 'categorylinks', 'page', 'page_props' ); |
| 26 | + list( $categorylinks, $page ) = $dbr->tableNamesN( 'categorylinks', 'page' ); |
27 | 27 | return "SELECT 'Unusedcategories' as type, |
28 | 28 | {$NScat} as namespace, page_title as title, page_title as value |
29 | 29 | FROM $page |
30 | 30 | LEFT JOIN $categorylinks ON page_title=cl_to |
31 | | - LEFT JOIN $page_props ON (pp_page=page_id AND pp_propname = 'ignoreunused') |
32 | 31 | WHERE cl_from IS NULL |
33 | 32 | AND page_namespace = {$NScat} |
34 | | - AND page_is_redirect = 0 |
35 | | - AND pp_propname IS NULL"; |
| 33 | + AND page_is_redirect = 0"; |
36 | 34 | } |
37 | 35 | |
38 | 36 | function formatResult( $skin, $result ) { |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -328,7 +328,6 @@ |
329 | 329 | 'filepath' => array( 0, 'FILEPATH:' ), |
330 | 330 | 'tag' => array( 0, 'tag' ), |
331 | 331 | 'hiddencat' => array( 1, '__HIDDENCAT__' ), |
332 | | - 'ignoreunused' => array( 1, '__IGNOREUNUSED__' ), |
333 | 332 | 'pagesincategory' => array( 1, 'PAGESINCATEGORY', 'PAGESINCAT' ), |
334 | 333 | 'pagesize' => array( 1, 'PAGESIZE' ), |
335 | 334 | 'index' => array( 1, '__INDEX__' ), |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -58,8 +58,6 @@ |
59 | 59 | link instead of Go button & Search button |
60 | 60 | * (bug 2314) Add links to user custom CSS and JS to Special:Preferences |
61 | 61 | * More helpful error message on raw page access if PHP_SELF isn't set |
62 | | -* (bug 17145) Specific categories can be excluded from Special:UnusedCategories |
63 | | - with __IGNOREUNUSED__ |
64 | 62 | * (bug 13040) Gender switch in user preferences |
65 | 63 | * (bug 13040) {{GENDER:}} magic word for interface messages |
66 | 64 | * (bug 3301) Optionally sort user list according to account creation time |