forked from extern/egroupware
Readonly parameter is pass-by-reference, can't be an expression
This commit is contained in:
parent
0044736e0f
commit
7b01f31d7d
@ -1004,7 +1004,8 @@ class etemplate extends boetemplate
|
|||||||
$cell['onchange'] = $this->expand_name($cell['onchange'],$show_c,$show_row,$content['.c'],$content['.row'],$content);
|
$cell['onchange'] = $this->expand_name($cell['onchange'],$show_c,$show_row,$content['.c'],$content['.row'],$content);
|
||||||
}
|
}
|
||||||
if (!$ext_type) $ext_type = $type;
|
if (!$ext_type) $ext_type = $type;
|
||||||
$extra_label = $this->extensionPreProcess($type,$form_name,$value,$cell,$readonlys[$name] || $readonlys['__ALL__']);
|
$extension_readonly = $readonlys[$name] || $readonlys['__ALL__'];
|
||||||
|
$extra_label = $this->extensionPreProcess($type,$form_name,$value,$cell,$extension_readonly);
|
||||||
|
|
||||||
$readonly = $cell['readonly'] !== false && ($readonly || $cell['readonly']); // might be set or unset (===false) by extension
|
$readonly = $cell['readonly'] !== false && ($readonly || $cell['readonly']); // might be set or unset (===false) by extension
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user