MINOR: catch uninitialised var

This commit is contained in:
Andreas Piening 2010-06-17 22:26:14 +00:00
parent 97d4a15aa2
commit 30215cea6d
1 changed files with 1 additions and 1 deletions

View File

@ -364,7 +364,7 @@ class SQLite3Database extends SS_Database {
$this->query('VACUUM', E_USER_NOTICE);
if($this instanceof SQLitePDODatabase) {
$msg = $this->dbConn->errorInfo();
$msg = $msg[2];
$msg = isset($msg[2]) ? $msg[2] : 'no errors';
} else {
$msg = $this->dbConn->lastErrorMsg();
}