Changed some PHP comments.

This commit is contained in:
stronk7
2006-09-12 17:41:22 +00:00
parent 88bf021308
commit cb78437d64
@@ -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