X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FfindHooks.php;h=81e18c993b08d677ee9146c2124a18f1e571cd5f;hb=81d2745d32c0f9975d47cc5b21029880aea2ea9f;hp=c91d8247e546522303b4e18c8bc98a15c0748b25;hpb=0124c6ce75b23da28d776edf842efb2af53336bd;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/findHooks.php b/maintenance/findHooks.php index c91d8247e5..81e18c993b 100644 --- a/maintenance/findHooks.php +++ b/maintenance/findHooks.php @@ -8,7 +8,7 @@ * - hooks names in code are the first parameter of wfRunHooks. * * if --online option is passed, the script will compare the hooks in the code - * with the ones at http://www.mediawiki.org/wiki/Manual:Hooks + * with the ones at https://www.mediawiki.org/wiki/Manual:Hooks * * Any instance of wfRunHooks that doesn't meet these parameters will be noted. * @@ -48,7 +48,7 @@ class FindHooks extends Maintenance { /* * Hooks that are ignored */ - protected static $ignore = [ 'testRunLegacyHooks', 'Test' ]; + protected static $ignore = [ 'Test' ]; public function __construct() { parent::__construct(); @@ -238,7 +238,7 @@ class FindHooks extends Maintenance { $m = []; preg_match_all( // All functions which runs hooks - '/(?:wfRunHooks|Hooks\:\:run|ContentHandler\:\:runLegacyHooks)\s*\(\s*' . + '/(?:wfRunHooks|Hooks\:\:run)\s*\(\s*' . // First argument is the hook name as string '([\'"])(.*?)\1' . // Comma for second argument