Small optimization
authorMarcel Werk <burntime@woltlab.com>
Mon, 12 Aug 2013 20:51:04 +0000 (22:51 +0200)
committerMarcel Werk <burntime@woltlab.com>
Mon, 12 Aug 2013 20:51:04 +0000 (22:51 +0200)
wcfsetup/install/files/lib/system/worker/ImportWorker.class.php

index 9e4fba8866d233c103160c4a5b1eaa3603782f1e..49e1d604cb3f9176847a35e801657ed918ae2e75 100644 (file)
@@ -56,7 +56,7 @@ class ImportWorker extends AbstractWorker {
                ImportHandler::getInstance()->setUserMergeMode($this->importData['userMergeMode']);
                
                // set import hash
-               ImportHandler::getInstance()->setImportHash(substr(StringUtil::getHash($this->importData['exporterName'] . $this->importData['dbHost'] . $this->importData['dbName'] . $this->importData['dbPrefix']), 0, 8));
+               ImportHandler::getInstance()->setImportHash(substr(StringUtil::getHash($this->importData['dbHost'] . $this->importData['dbName'] . $this->importData['dbPrefix']), 0, 8));
        }
 
        /**