New version, 0.3.1

This commit is contained in:
Yaron Koren 2009-01-08 05:48:38 +00:00
parent 16f7be9bb5
commit b34f3fe503
Notes: Yaron Koren 2009-07-20 18:49:29 +00:00
2 changed files with 4 additions and 4 deletions

4
README
View file

@ -1,6 +1,6 @@
Replace Text Extension
Version 0.4
Version 0.3.1
Yaron Koren
This is free software licenced under the GNU General Public Licence. Please
@ -11,7 +11,7 @@ full text and terms of the licence.
Replace Text is an extension to MediaWiki that creates a new special page,
Special:ReplaceText, available to administrators only (defined as anyone
who has 'delete' privileges on pages), that does a text find-and-replace
who has the 'replacetext' privilege), that does a text find-and-replace
on all pages in the wiki, except the Talk pages and the ones in the wiki's
own project namespace. Both the contents of pages and their titles can be
modified. The search is case-sensitive.

View file

@ -4,7 +4,7 @@
* allow administrators to do a global string find-and-replace on all the
* content pages of a wiki.
*
* http://www.mediawiki.org/wiki/Extension:Text_Replace
* http://www.mediawiki.org/wiki/Extension:Replace_Text
*
* The special page created is 'Special:ReplaceText', and it provides
* a form to do a global search-and-replace, with the changes to every
@ -24,7 +24,7 @@ if (!defined('MEDIAWIKI')) die();
// credits
$wgExtensionCredits['specialpage'][] = array(
'name' => 'Replace Text',
'version' => '0.4',
'version' => '0.3.1',
'author' => 'Yaron Koren',
'url' => 'http://www.mediawiki.org/wiki/Extension:Replace_Text',
'description' => 'A special page that lets administrators run a global search-and-replace',