X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=blobdiff_plain;f=maintenance%2FimportDump.php;h=3bf8b272ff07674af520dfbf163e8cfe62804fcf;hb=df85890b76b18e0c9bc465984b63df6090955a5a;hp=7c452a6325359e89aece05a768ec04253cf82478;hpb=f132746d2882a8383cb6288325aae048b2b996e3;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/importDump.php b/maintenance/importDump.php index 7c452a6325..3bf8b272ff 100644 --- a/maintenance/importDump.php +++ b/maintenance/importDump.php @@ -297,13 +297,13 @@ TEXT return false; } } - $importer->setPageCallback( array( &$this, 'reportPage' ) ); + $importer->setPageCallback( array( $this, 'reportPage' ) ); $this->importCallback = $importer->setRevisionCallback( - array( &$this, 'handleRevision' ) ); + array( $this, 'handleRevision' ) ); $this->uploadCallback = $importer->setUploadCallback( - array( &$this, 'handleUpload' ) ); + array( $this, 'handleUpload' ) ); $this->logItemCallback = $importer->setLogItemCallback( - array( &$this, 'handleLogItem' ) ); + array( $this, 'handleLogItem' ) ); if ( $this->uploads ) { $importer->setImportUploads( true ); }