MOd 1.2.4 installed with some errors. Hope you can fix them for the next release.
Two sql errors for the Oracle database:
- the index name to be created is too long:
substitute
- Code: Select all
$sql = 'CREATE INDEX ' . $table . "_$column ON "
with
- Code: Select all
$sql = 'CREATE INDEX ' . $table . "_TLP_ID ON "
- the select in "create acp module" is invalid:
change
- Code: Select all
$sql = 'SELECT module_id FROM ' . MODULES_TABLE . " WHERE module_langname = 'ALTT_TITLE' LIMIT 1";
with
- Code: Select all
$sql = 'SELECT module_id FROM ' . MODULES_TABLE . " WHERE module_langname = 'ALTT_TITLE'";