Index: trunk/extensions/ReplaceText/ReplaceText.php |
— | — | @@ -4,7 +4,7 @@ |
5 | 5 | * allow administrators to do a global string find-and-replace on all the |
6 | 6 | * content pages of a wiki. |
7 | 7 | * |
8 | | - * http://www.mediawiki.org/wiki/Extension:Text_Replace |
| 8 | + * http://www.mediawiki.org/wiki/Extension:Replace_Text |
9 | 9 | * |
10 | 10 | * The special page created is 'Special:ReplaceText', and it provides |
11 | 11 | * a form to do a global search-and-replace, with the changes to every |
— | — | @@ -24,7 +24,7 @@ |
25 | 25 | // credits |
26 | 26 | $wgExtensionCredits['specialpage'][] = array( |
27 | 27 | 'name' => 'Replace Text', |
28 | | - 'version' => '0.4', |
| 28 | + 'version' => '0.3.1', |
29 | 29 | 'author' => 'Yaron Koren', |
30 | 30 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Replace_Text', |
31 | 31 | 'description' => 'A special page that lets administrators run a global search-and-replace', |
Index: trunk/extensions/ReplaceText/README |
— | — | @@ -1,6 +1,6 @@ |
2 | 2 | Replace Text Extension |
3 | 3 | |
4 | | - Version 0.4 |
| 4 | + Version 0.3.1 |
5 | 5 | Yaron Koren |
6 | 6 | |
7 | 7 | This is free software licenced under the GNU General Public Licence. Please |
— | — | @@ -11,7 +11,7 @@ |
12 | 12 | |
13 | 13 | Replace Text is an extension to MediaWiki that creates a new special page, |
14 | 14 | Special:ReplaceText, available to administrators only (defined as anyone |
15 | | -who has 'delete' privileges on pages), that does a text find-and-replace |
| 15 | +who has the 'replacetext' privilege), that does a text find-and-replace |
16 | 16 | on all pages in the wiki, except the Talk pages and the ones in the wiki's |
17 | 17 | own project namespace. Both the contents of pages and their titles can be |
18 | 18 | modified. The search is case-sensitive. |