From 61e21d605ef62cb43bf982441f7115e72aa0184d Mon Sep 17 00:00:00 2001 From: Paolo Date: Mon, 8 Jul 2019 10:47:54 +0200 Subject: [PATCH] Fixes --- application/libraries/DBSkelLib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/libraries/DBSkelLib.php b/application/libraries/DBSkelLib.php index 06130cf50..1d556d9a4 100644 --- a/application/libraries/DBSkelLib.php +++ b/application/libraries/DBSkelLib.php @@ -1134,7 +1134,7 @@ class DBSkelLib $queryComment = sprintf('COMMENT ON TABLE %s.%s IS \'%s\';', $schema, $tableName, $tableComment); if ($this->_isDryrunMode()) { - $this->_printInfo('Dry run >> table .'$tableName'. would be commented with: '.$queryComment); + $this->_printInfo('Dry run >> table '.$tableName.' would be commented with: '.$queryComment); } else // new and diff mode { @@ -1175,7 +1175,7 @@ class DBSkelLib { if ($this->_isDryrunMode()) { - $this->_printInfo('Dry run >> column '$tableName.'.'.$colName.' would be commented with: '.$colStructure[self::T_COMMENT]); + $this->_printInfo('Dry run >> column '.$tableName.'.'.$colName.' would be commented with: '.$colStructure[self::T_COMMENT]); } else // new and diff mode {