diff options
Diffstat (limited to 'includes/actions/RawAction.php')
-rw-r--r-- | includes/actions/RawAction.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/actions/RawAction.php b/includes/actions/RawAction.php index d0d956ec..727bed20 100644 --- a/includes/actions/RawAction.php +++ b/includes/actions/RawAction.php @@ -117,7 +117,7 @@ class RawAction extends FormlessAction { $response->header( 'HTTP/1.x 404 Not Found' ); } - if ( !wfRunHooks( 'RawPageViewBeforeOutput', array( &$this, &$text ) ) ) { + if ( !Hooks::run( 'RawPageViewBeforeOutput', array( &$this, &$text ) ) ) { wfDebug( __METHOD__ . ": RawPageViewBeforeOutput hook broke raw page output.\n" ); } |