From 63dd5a626a3a98c1662043766d6b72992e616ff6 Mon Sep 17 00:00:00 2001 From: stronk7 Date: Fri, 23 May 2008 22:34:53 +0000 Subject: [PATCH] table suggested PHP is using $dbman now. MDL-14941 --- .../view_structure_php/view_structure_php.class.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/admin/xmldb/actions/view_structure_php/view_structure_php.class.php b/admin/xmldb/actions/view_structure_php/view_structure_php.class.php index 3e5846c127..feb47f82ad 100644 --- a/admin/xmldb/actions/view_structure_php/view_structure_php.class.php +++ b/admin/xmldb/actions/view_structure_php/view_structure_php.class.php @@ -212,8 +212,8 @@ class view_structure_php extends XMLDBAction { /// Launch the proper DDL $result .= XMLDB_LINEFEED; $result .= ' /// Conditionally launch create table for ' . $table->getName() . XMLDB_LINEFEED; - $result .= ' if (!table_exists($table)) {' . XMLDB_LINEFEED; - $result .= ' $result = $result && create_table($table);' . XMLDB_LINEFEED; + $result .= ' if (!$dbman->table_exists($table)) {' . XMLDB_LINEFEED; + $result .= ' $result = $result && $dbman->create_table($table);' . XMLDB_LINEFEED; $result .= ' }' . XMLDB_LINEFEED; /// Add the proper upgrade_xxxx_savepoint call @@ -255,8 +255,8 @@ class view_structure_php extends XMLDBAction { /// Launch the proper DDL $result .= XMLDB_LINEFEED; $result .= ' /// Conditionally launch drop table for ' . $table->getName() . XMLDB_LINEFEED; - $result .= ' if (table_exists($table)) {' . XMLDB_LINEFEED; - $result .= ' $result = $result && drop_table($table);' . XMLDB_LINEFEED; + $result .= ' if ($dbman->table_exists($table)) {' . XMLDB_LINEFEED; + $result .= ' $result = $result && $dbman->drop_table($table);' . XMLDB_LINEFEED; $result .= ' }' . XMLDB_LINEFEED; /// Add the proper upgrade_xxxx_savepoint call @@ -298,7 +298,7 @@ class view_structure_php extends XMLDBAction { /// Launch the proper DDL $result .= XMLDB_LINEFEED; $result .= ' /// Launch rename table for ' . $table->getName() . XMLDB_LINEFEED; - $result .= ' $result = $result && rename_table($table, ' . "'NEWNAMEGOESHERE'" . ');' . XMLDB_LINEFEED; + $result .= ' $result = $result && $dbman->rename_table($table, ' . "'NEWNAMEGOESHERE'" . ');' . XMLDB_LINEFEED; /// Add the proper upgrade_xxxx_savepoint call $result .= $this->upgrade_savepoint_php ($structure); -- 2.39.5