summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/postgre/postgre_utility.php
diff options
context:
space:
mode:
authoradmin <devnull@localhost>2006-10-25 07:12:34 +0200
committeradmin <devnull@localhost>2006-10-25 07:12:34 +0200
commit1716cb80344dcb09dd263293b7901cd5b669e302 (patch)
tree544c6f45fe307cdd2a1d0f6a5f2bc05f0bceca49 /system/database/drivers/postgre/postgre_utility.php
parent2bc13859b72ceb8400d37adbba52b8404995bf03 (diff)
Diffstat (limited to 'system/database/drivers/postgre/postgre_utility.php')
-rw-r--r--system/database/drivers/postgre/postgre_utility.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/postgre/postgre_utility.php b/system/database/drivers/postgre/postgre_utility.php
index 478e74276..bebe09415 100644
--- a/system/database/drivers/postgre/postgre_utility.php
+++ b/system/database/drivers/postgre/postgre_utility.php
@@ -74,7 +74,7 @@ class CI_DB_postgre_utility extends CI_DB_utility {
*/
function _drop_table($table)
{
- return "DROP TABLE ".$this->db->_escape_table($name)." CASCADE";
+ return "DROP TABLE ".$this->db->_escape_table($table)." CASCADE";
}
// --------------------------------------------------------------------