Topic: The MDK and Postgre/SQLite
There is a bug in the MDK/install_mod.php line 36:
default:
$db->query('ALTER TABLE ".$db->prefix."groups ADD g_wiki_level INT(10) NOT NULL DEFAULT 1') or error('Unable to add column "g_wiki_level" to table "groups"', __FILE__, __LINE__, $db->error());
break;
Should be:
default:
$db->query("ALTER TABLE ".$db->prefix."groups ADD g_wiki_level INT(10) NOT NULL DEFAULT 1") or error('Unable to add column "g_wiki_level" to table "groups"', __FILE__, __LINE__, $db->error());
break;