undefined/uninitialized variable
This commit is contained in:
parent
4ad0c5045a
commit
80f15ee668
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ class Doctrine_Export_Sqlite extends Doctrine_Export
|
||||||
if (!@file_exists($databaseFile)) {
|
if (!@file_exists($databaseFile)) {
|
||||||
throw new Doctrine_Export_Exception('database does not exist');
|
throw new Doctrine_Export_Exception('database does not exist');
|
||||||
}
|
}
|
||||||
$result = @unlink($database_file);
|
$result = @unlink($databaseFile);
|
||||||
if ( ! $result) {
|
if ( ! $result) {
|
||||||
throw new Doctrine_Export_Exception('could not remove the database file');
|
throw new Doctrine_Export_Exception('could not remove the database file');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue