Skip to content
Snippets Groups Projects
Commit cd951207 authored by Akshath's avatar Akshath
Browse files

Fix #974

parent 3385fb92
No related branches found
No related tags found
No related merge requests found
......@@ -47,8 +47,8 @@ class Vtiger_Filter {
* @access private
*/
function initialize($valuemap, $moduleInstance=false) {
$this->id = $valuemap[cvid];
$this->name= $valuemap[viewname];
$this->id = $valuemap['cvid'];
$this->name= $valuemap['viewname'];
$this->module=$moduleInstance? $moduleInstance: Vtiger_Module::getInstance($valuemap[tabid]);
}
......
......@@ -32,10 +32,10 @@ class Vtiger_Menu {
* @access private
*/
function initialize($valuemap) {
$this->id = $valuemap[parenttabid];
$this->label = $valuemap[parenttab_label];
$this->sequence = $valuemap[sequence];
$this->visible = $valuemap[visible];
$this->id = $valuemap['parenttabid'];
$this->label = $valuemap['parenttab_label'];
$this->sequence = $valuemap['sequence'];
$this->visible = $valuemap['visible'];
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment