* (bug 17472) use print <<<EOF in maintenance/importTextFile.php. Patch contribute...
[lhc/web/wiklou.git] / maintenance / importLogs.inc
index a5b94cb..a008e6c 100644 (file)
@@ -22,9 +22,9 @@
  *
  * Not yet complete.
  *
+ * @file
  * @todo document
- * @package MediaWiki
- * @subpackage Maintenance
+ * @ingroup Maintenance
  */
 
 /** */
@@ -36,15 +36,14 @@ require_once( 'LogPage.php' );
 /**
  * Log importer
  * @todo document
- * @package MediaWiki
- * @subpackage Maintenance
+ * @ingroup Maintenance
  */
 class LogImporter {
        var $dummy = false;
 
        function LogImporter( $type ) {
                $this->type = $type;
-               $this->db =& wfGetDB( DB_MASTER );
+               $this->db = wfGetDB( DB_MASTER );
                $this->actions = $this->setupActions();
        }
 
@@ -143,5 +142,3 @@ function wfUnescapeWikiText( $text ) {
                $text );
        return $text;
 }
-
-?>