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;

Re: The MDK and Postgre/SQLite

Thanks. I'll fix it.

"Programming is like sex: one mistake and you have to support it for the rest of your life."