Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 862 → Rev 863

/trunk/plugins/viathinksoft/database/pdo/OIDplusDatabaseConnectionPDO.class.php
105,7 → 105,7
$this->conn = new PDO($dsn, $username, $password, $options);
} catch (PDOException $e) {
$message = $e->getMessage();
throw new OIDplusConfigInitializationException(_L('Connection to the database failed!').' '.$message);
throw new OIDplusConfigInitializationException(trim(_L('Connection to the database failed!').' '.$message));
}
 
$this->last_error = null;