[Vtigercrm-commits] [vtiger-commits] r9833 - /vtigercrm/branches/5.0.3/include/utils/CommonUtils.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Tue Nov 14 08:02:06 EST 2006
Author: richie
Date: Tue Nov 14 06:01:58 2006
New Revision: 9833
Log:
Made changes for module Addition -- By Jeri
Modified:
vtigercrm/branches/5.0.3/include/utils/CommonUtils.php
Modified: vtigercrm/branches/5.0.3/include/utils/CommonUtils.php
==============================================================================
--- vtigercrm/branches/5.0.3/include/utils/CommonUtils.php (original)
+++ vtigercrm/branches/5.0.3/include/utils/CommonUtils.php Tue Nov 14 06:01:58 2006
@@ -1070,26 +1070,29 @@
$log->debug("Exiting getBlocks method ...");
$index_count =1;
$max_index =0;
- foreach($getBlockInfo as $label=>$contents)
- {
+ if(count($getBlockInfo) > 0)
+ {
+ foreach($getBlockInfo as $label=>$contents)
+ {
$no_rows = count($contents);
$index_count = $max_index+1;
- foreach($contents as $block_row => $elements)
- {
- $max_index= $no_rows+$index_count;
-
- for($i=0;$i<count($elements);$i++)
- {
- if(sizeof($getBlockInfo[$label][$block_row][$i])!=0)
- {
- if($i==0)
- $getBlockInfo[$label][$block_row][$i][]=array($index_count);
- else
- $getBlockInfo[$label][$block_row][$i][]=array($max_index);
+ foreach($contents as $block_row => $elements)
+ {
+ $max_index= $no_rows+$index_count;
+
+ for($i=0;$i<count($elements);$i++)
+ {
+ if(sizeof($getBlockInfo[$label][$block_row][$i])!=0)
+ {
+ if($i==0)
+ $getBlockInfo[$label][$block_row][$i][]=array($index_count);
+ else
+ $getBlockInfo[$label][$block_row][$i][]=array($max_index);
+ }
}
+ $index_count++;
+
}
- $index_count++;
-
}
}
return $getBlockInfo;
More information about the vtigercrm-commits
mailing list