';
// Based on current params, call the needed function
switch ($commandparam) {
case 'create_table':
diff --git a/admin/tool/xmldb/actions/view_structure_sql/view_structure_sql.class.php b/admin/tool/xmldb/actions/view_structure_sql/view_structure_sql.class.php
index 377b915e8c1..bb81347d64e 100644
--- a/admin/tool/xmldb/actions/view_structure_sql/view_structure_sql.class.php
+++ b/admin/tool/xmldb/actions/view_structure_sql/view_structure_sql.class.php
@@ -86,7 +86,7 @@ class view_structure_sql extends XMLDBAction {
$o = $b;
$o.= '
';
- $o.= '
';
+ $o .= '
';
// Get an array of statements
if ($starr = $DB->get_manager()->generator->getCreateStructureSQL($structure)) {
$starr = $dbman->generator->getEndedStatements($starr);
diff --git a/admin/tool/xmldb/actions/view_table_php/view_table_php.class.php b/admin/tool/xmldb/actions/view_table_php/view_table_php.class.php
index d337572a8dc..c316432396d 100644
--- a/admin/tool/xmldb/actions/view_table_php/view_table_php.class.php
+++ b/admin/tool/xmldb/actions/view_table_php/view_table_php.class.php
@@ -169,7 +169,7 @@ class view_table_php extends XMLDBAction {
$o.= '';
$o.= '
';
- $o.= '
';
+ $o .= '
';
// Check we have selected some field/key/index from the popup
if ($fieldkeyindexparam == 'fieldshead' || $fieldkeyindexparam == 'keyshead' || $fieldkeyindexparam == 'indexeshead') {
$o.= s($this->str['selectonefieldkeyindex']);
diff --git a/admin/tool/xmldb/actions/view_table_sql/view_table_sql.class.php b/admin/tool/xmldb/actions/view_table_sql/view_table_sql.class.php
index a3f25660e36..8a9e04a303b 100644
--- a/admin/tool/xmldb/actions/view_table_sql/view_table_sql.class.php
+++ b/admin/tool/xmldb/actions/view_table_sql/view_table_sql.class.php
@@ -93,7 +93,7 @@ class view_table_sql extends XMLDBAction {
$o = $b;
$o.= '
';
- $o.= '
';
+ $o .= '
';
// Get an array of statements
if ($starr = $DB->get_manager()->generator->getCreateTableSQL($table)) {