Index: trunk/phase3/docs/hooks.txt |
— | — | @@ -1303,19 +1303,10 @@ |
1304 | 1304 | in the message (bool) |
1305 | 1305 | |
1306 | 1306 | 'OldChangesListRecentChangesLine': Customize entire Recent Changes line. |
1307 | | -you will also need to use the EnhancedChangesListRecentChangesLine to alter |
1308 | | -the output for user of enhanced recent changes. |
1309 | 1307 | &$changeslist: The OldChangesList instance. |
1310 | 1308 | &$s: HTML of the form "<li>...</li>" containing one RC entry. |
1311 | 1309 | &$rc: The RecentChange object. |
1312 | 1310 | |
1313 | | -'RecentChangesListRecentChangesLine': Customize entire Recent Changes line. |
1314 | | -you will also need to use the OldChangesListRecentChangesLine to alter |
1315 | | -the output for user of regular recent changes. |
1316 | | -&$changeslist: The EnhancedChangesList instance. |
1317 | | -&$s: HTML of the form "<li>...</li>" containing one RC entry. |
1318 | | -&$rc: The RecentChange object. |
1319 | | - |
1320 | 1311 | 'OpenSearchUrls': Called when constructing the OpenSearch description XML. |
1321 | 1312 | Hooks can alter or append to the array of URLs for search & suggestion formats. |
1322 | 1313 | &$urls: array of associative arrays with Url element attributes |
Index: trunk/phase3/RELEASE-NOTES-1.19 |
— | — | @@ -61,9 +61,6 @@ |
62 | 62 | to stop it from replace an already existing default sort, and suppress error. |
63 | 63 | * (bug 18578) Rewrote revision delete related messages to allow better |
64 | 64 | localisation |
65 | | -* New hook RecentChangesListRecentChangesLine which let you customize an |
66 | | - entire recent changes line for user with 'Enhanced recent changes' option |
67 | | - It is equivalent to the existing hook OldChangesListRecentChangesLine |
68 | 65 | |
69 | 66 | === Bug fixes in 1.19 === |
70 | 67 | * $wgUploadNavigationUrl should be used for file redlinks if |
Index: trunk/phase3/includes/ChangesList.php |
— | — | @@ -741,8 +741,6 @@ |
742 | 742 | array_push( $this->rc_cache[$secureName], $rc ); |
743 | 743 | } |
744 | 744 | |
745 | | - wfRunHooks( 'EnhancedChangesListRecentChangesLine', array(&$this, &$s, $rc) ); |
746 | | - |
747 | 745 | wfProfileOut( __METHOD__ ); |
748 | 746 | |
749 | 747 | return $ret; |