From cb78437d6442fb5c59b1cadfb59997c8bae28281 Mon Sep 17 00:00:00 2001 From: stronk7 Date: Tue, 12 Sep 2006 17:41:22 +0000 Subject: [PATCH] Changed some PHP comments. --- .../actions/view_structure_php/view_structure_php.class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 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 7433217519..df0b7b6256 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 @@ -168,7 +168,7 @@ class view_structure_php extends XMLDBAction { /// Add contents $result .= XMLDB_LINEFEED; - $result .= ' /// Create table ' . $table->getName() . XMLDB_LINEFEED; + $result .= ' /// Define table ' . $table->getName() . ' to be created' . XMLDB_LINEFEED; $result .= ' $table = new XMLDBTable(' . "'" . $table->getName() . "'" . ');' . XMLDB_LINEFEED; $result .= XMLDB_LINEFEED; $result .= ' /// Adding fields to table ' . $table->getName() . XMLDB_LINEFEED; @@ -243,7 +243,7 @@ class view_structure_php extends XMLDBAction { /// Add contents $result .= XMLDB_LINEFEED; - $result .= ' /// Create table ' . $table->getName() . XMLDB_LINEFEED; + $result .= ' /// Define table ' . $table->getName() . ' to be dropped' . XMLDB_LINEFEED; $result .= ' $table = new XMLDBTable(' . "'" . $table->getName() . "'" . ');' . XMLDB_LINEFEED; /// Launch the proper DDL @@ -281,7 +281,7 @@ class view_structure_php extends XMLDBAction { /// Add contents $result .= XMLDB_LINEFEED; - $result .= ' /// Create table ' . $table->getName() . XMLDB_LINEFEED; + $result .= ' /// Define table ' . $table->getName() . ' to be renamed to NEWNAMEGOESHERE' . XMLDB_LINEFEED; $result .= ' $table = new XMLDBTable(' . "'" . $table->getName() . "'" . ');' . XMLDB_LINEFEED; /// Launch the proper DDL -- 2.39.5