Index: trunk/phase3/includes/api/ApiDelete.php |
— | — | @@ -143,7 +143,7 @@ |
144 | 144 | |
145 | 145 | $error = ''; |
146 | 146 | if ( !wfRunHooks( 'ArticleDelete', array( &$article, &$wgUser, &$reason, $error ) ) ) { |
147 | | - $this->dieUsageMsg( array( 'hookaborted', $error ) ); |
| 147 | + return array( array( 'hookaborted', $error ) ); |
148 | 148 | } |
149 | 149 | |
150 | 150 | // Luckily, Article.php provides a reusable delete function that does the hard work for us |