Index: trunk/extensions/AbuseFilter/api/ApiAbuseFilterCheckMatch.php |
— | — | @@ -103,7 +103,7 @@ |
104 | 104 | |
105 | 105 | public function getExamples() { |
106 | 106 | return array( |
107 | | - 'api.php?action=checkfiltermatch&filter=!("autoconfirmed"%20in%20user_groups)&rcid=15' |
| 107 | + 'api.php?action=abusefiltercheckmatch&filter=!("autoconfirmed"%20in%20user_groups)&rcid=15' |
108 | 108 | ); |
109 | 109 | } |
110 | 110 | |
Index: trunk/extensions/AbuseFilter/api/ApiAbuseFilterUnblockAutopromote.php |
— | — | @@ -75,7 +75,7 @@ |
76 | 76 | |
77 | 77 | public function getExamples() { |
78 | 78 | return array( |
79 | | - 'api.php?action=unblockautopromote&user=Bob' |
| 79 | + 'api.php?action=abusefilterunblockautopromote&user=Bob' |
80 | 80 | ); |
81 | 81 | } |
82 | 82 | |
Index: trunk/extensions/AbuseFilter/api/ApiAbuseFilterCheckSyntax.php |
— | — | @@ -54,12 +54,12 @@ |
55 | 55 | |
56 | 56 | public function getExamples() { |
57 | 57 | return array( |
58 | | - 'api.php?action=checkfiltersyntax&filter="foo"', |
59 | | - 'api.php?action=checkfiltersyntax&filter="bar"%20bad_variable', |
| 58 | + 'api.php?action=abusefilterchecksyntax&filter="foo"', |
| 59 | + 'api.php?action=abusefilterchecksyntax&filter="bar"%20bad_variable', |
60 | 60 | ); |
61 | 61 | } |
62 | 62 | |
63 | 63 | public function getVersion() { |
64 | 64 | return __CLASS__ . ': $Id$'; |
65 | 65 | } |
66 | | -} |
\ No newline at end of file |
| 66 | +} |
Index: trunk/extensions/AbuseFilter/api/ApiAbuseFilterEvalExpression.php |
— | — | @@ -31,7 +31,7 @@ |
32 | 32 | |
33 | 33 | public function getExamples() { |
34 | 34 | return array( |
35 | | - 'api.php?action=evalfilterexpression&expression=lcase("FOO")' |
| 35 | + 'api.php?action=abusefilterevalexpression&expression=lcase("FOO")' |
36 | 36 | ); |
37 | 37 | } |
38 | 38 | |