04-27-2020, 07:45 AM
that looks correct to me. I see nor reason why it wouldn't work.
try adding this change to the code
that will output the raw lists on the screen. share that with me.
try adding this change to the code
Code:
diff --git a/modules/Settings/LayoutBlockList.php b/modules/Settings/LayoutBlockList.php
index 67b1a6ef9..feeb67502 100644
--- a/modules/Settings/LayoutBlockList.php
+++ b/modules/Settings/LayoutBlockList.php
@@ -139,7 +139,7 @@ while ($rl = $adb->fetch_array($brmrs)) {
}
$notBlockRelatedModules = array_diff_key($relmods, $blockrelmods);
$smarty->assign('NotBlockRelatedModules', $notBlockRelatedModules);
-
+var_dump($notBlockRelatedModules, $blockrelmods);
$curmodsinrel_result = $adb->pquery('SELECT fieldid,relmodule FROM vtiger_fieldmodulerel WHERE module=?', array($fld_module));
$curmodsinrel = array();
while ($row = $adb->fetch_array($curmodsinrel_result)) {
that will output the raw lists on the screen. share that with me.
Joe
TSolucio
TSolucio