I have a problem, someone sabotaged some pages on Wikipedia by redacting content. Is it possible to check the specific paragraph that content was changed in and restore it?

link|improve this question

0% accept rate
3  
Having a robot to automatically restore content is very much frowned apon and will probably get you blocked. – JohnD Dec 14 '11 at 13:49
What's the page? – philwilks Dec 14 '11 at 14:41
feedback

1 Answer

I can't understand your question. But as the title shows, you may want to edit a wiki page via API. so... this may help you:

$page = new Article(Title::newFromText('PageName'));
$status = $page->doEdit($body_text, 'message.', EDIT_UPDATE);

And if you want to revert to a prior revision of an article, you may read the docs about Rollback API of Mediawiki.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.