Originally created by: klikar3
If Views exist in the database an error occurs in helpers\MysqlBackup.php because "SHOW TABLES" also lists Views.
Line 62 is now:
$sql = 'SHOW TABLES';
it should be
$sql = "SHOW FULL TABLES where Table_Type != 'VIEW'";
so that only Tables get scripted and saved...
Later on the scripting of Views but not their content could be added... ;-)
Regards
Karl
Originally posted by: spanjeta
Thanks @klikar3 . We shall update it in next release