Index: trunk/phase3/docs/hooks.txt |
— | — | @@ -552,11 +552,6 @@ |
553 | 553 | 'BookInformation': Before information output on Special:Booksources |
554 | 554 | $isbn: ISBN to show information for |
555 | 555 | $output: OutputPage object in use |
556 | | - |
557 | | -'CacheHeadersAfterSet': after cache headers have been set in |
558 | | -OutputPage::sendCacheControl, so they can be overridden without |
559 | | -disabling output method |
560 | | -$out: OutputPage instance |
561 | 556 | |
562 | 557 | 'CategoryPageView': before viewing a categorypage in CategoryPage::view |
563 | 558 | $catpage: CategoryPage instance |
Index: trunk/phase3/includes/OutputPage.php |
— | — | @@ -1401,7 +1401,6 @@ |
1402 | 1402 | $response->header( 'Cache-Control: no-cache, no-store, max-age=0, must-revalidate' ); |
1403 | 1403 | $response->header( 'Pragma: no-cache' ); |
1404 | 1404 | } |
1405 | | - wfRunHooks('CacheHeadersAfterSet', array( $this ) ); |
1406 | 1405 | } |
1407 | 1406 | |
1408 | 1407 | /** |