Fix #7948 : warn that recentchanges need to be rebuild.
authorAntoine Musso <hashar@users.mediawiki.org>
Sun, 7 Jan 2007 18:50:26 +0000 (18:50 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Sun, 7 Jan 2007 18:50:26 +0000 (18:50 +0000)
RELEASE-NOTES
maintenance/importDump.php

index b9e92a6..ce60388 100644 (file)
@@ -477,6 +477,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * Count deleted edits when regenerating total edits in maintenance/initStats.php
 * (bug 3706) Allow users to be exempted from IP blocks. The ipblock-exempt permission
   key has been added to enable this behaviour, by default assigned to sysops.
+* (bug 7948) importDump.php now warn that Recentchanges need to be rebuild.
 
 
 == Languages updated ==
index 1bca329..22709f6 100644 (file)
@@ -136,6 +136,8 @@ if( WikiError::isError( $result ) ) {
        echo $result->getMessage() . "\n";
 } else {
        echo "Done!\n";
+       echo "You might want to run rebuildrecentchanges.php to regenerate\n";
+       echo "the recentchanges page.";
 }
 
 ?>