1
0
mirror of synced 2025-02-01 04:51:45 +03:00

undefined/uninitialized variable

This commit is contained in:
gnat 2007-06-22 17:37:32 +00:00
parent 4ad0c5045a
commit 80f15ee668

View File

@ -47,7 +47,7 @@ class Doctrine_Export_Sqlite extends Doctrine_Export
if (!@file_exists($databaseFile)) {
throw new Doctrine_Export_Exception('database does not exist');
}
$result = @unlink($database_file);
$result = @unlink($databaseFile);
if ( ! $result) {
throw new Doctrine_Export_Exception('could not remove the database file');
}