1
0

this should maybe fix the error message in importer

This commit is contained in:
Garvin Hicking
2014-04-28 11:14:19 +02:00
parent 06880647b7
commit e4a0830ad1

View File

@ -97,7 +97,7 @@ class Serendipity_Import_WordPress extends Serendipity_Import {
return sprintf(COULDNT_CONNECT, htmlspecialchars($this->data['host']));
}
if (!@mysql_select_db($this->data['name'])) {
if (!@mysql_select_db($this->data['name'], $wpdb)) {
return sprintf(COULDNT_SELECT_DB, mysql_error($wpdb));
}