FIX: #0 Include module-specific tables and indexes in standard installation step2
All checks were successful
Deploy Beta (NATIVE) / deploy (push) Successful in 49s

This commit is contained in:
vickytechkey 2026-08-19 22:21:58 +05:30
parent 22d8b13ea0
commit 0dcf74cd88

View file

@ -202,7 +202,7 @@ if ($action == "set") { // Test on permission not required. Already managed by
$tabledata = array();
if (is_resource($handle)) {
while (($file = readdir($handle)) !== false) {
if (preg_match('/\.sql$/i', $file) && preg_match('/^llx_/i', $file) && !preg_match('/\.key\.sql$/i', $file) && !preg_match('/\-/', $file)) {
if (preg_match('/\.sql$/i', $file) && preg_match('/^llx_/i', $file) && !preg_match('/\.key\.sql$/i', $file)) {
$tablefound++;
$tabledata[] = $file;
}
@ -300,7 +300,7 @@ if ($action == "set") { // Test on permission not required. Already managed by
$tabledata = array();
if (is_resource($handle)) {
while (($file = readdir($handle)) !== false) {
if (preg_match('/\.sql$/i', $file) && preg_match('/^llx_/i', $file) && preg_match('/\.key\.sql$/i', $file) && !preg_match('/\-/', $file)) {
if (preg_match('/\.sql$/i', $file) && preg_match('/^llx_/i', $file) && preg_match('/\.key\.sql$/i', $file)) {
$tablefound++;
$tabledata[] = $file;
}