Author: jwage
Date: 2008-09-26 00:47:05 +0100 (Fri, 26 Sep 2008)
New Revision: 4985
Modified:
branches/1.0/lib/Doctrine/Import/Pgsql.php
Log:
[1.0] fixes #1458 Fixes undefined variable
Modified: branches/1.0/lib/Doctrine/Import/Pgsql.php
===================================================================
--- branches/1.0/lib/Doctrine/Import/Pgsql.php 2008-09-25 23:44:50 UTC (rev
4984)
+++ branches/1.0/lib/Doctrine/Import/Pgsql.php 2008-09-25 23:47:05 UTC (rev
4985)
@@ -246,6 +246,6 @@
*/
public function listTableViews($table)
{
- return $this->conn->fetchColumn($query);
+ return $this->conn->fetchColumn($table);
}
}
\ No newline at end of file
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"doctrine-svn" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.co.uk/group/doctrine-svn?hl=en-GB
-~----------~----~----~----~------~----~------~--~---