From 4ad0c5045a667858d462ceeb1b473ce653cd601e Mon Sep 17 00:00:00 2001 From: gnat Date: Fri, 22 Jun 2007 17:37:06 +0000 Subject: [PATCH] undefined/uninitialized variables --- lib/Doctrine/Export/Frontbase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/Export/Frontbase.php b/lib/Doctrine/Export/Frontbase.php index 568aa5071..166208d53 100644 --- a/lib/Doctrine/Export/Frontbase.php +++ b/lib/Doctrine/Export/Frontbase.php @@ -257,7 +257,7 @@ class Doctrine_Export_Frontbase extends Doctrine_Export */ public function createSequence($sequenceName, $start = 1, array $options = array()) { - $sequenceName = $this->conn->quoteIdentifier($this->conn->getSequenceName($seqName), true); + $sequenceName = $this->conn->quoteIdentifier($this->conn->getSequenceName($sequenceName), true); $seqcolName = $this->conn->quoteIdentifier($this->conn->getAttribute(Doctrine::ATTR_SEQCOL_NAME), true); $query = 'CREATE TABLE ' . $sequenceName . ' (' . $seqcolName . ' INTEGER DEFAULT UNIQUE, PRIMARY KEY(' . $seqcolName . '))';