mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-03-04 18:21:35 +01:00
Fix et2-groupbox got a namespace on server, but not client
This commit is contained in:
parent
fce8540da5
commit
201451ba98
@ -49,7 +49,10 @@ class Box extends Etemplate\Widget
|
|||||||
$old_cname = $params[0];
|
$old_cname = $params[0];
|
||||||
$old_expand = $params[1];
|
$old_expand = $params[1];
|
||||||
|
|
||||||
if ($this->id && $this->type != 'groupbox') $cname = self::form_name($cname, $this->id, $params[1]);
|
if($this->id && !in_array($this->type, ['groupbox', 'et2-groupbox']))
|
||||||
|
{
|
||||||
|
$cname = self::form_name($cname, $this->id, $params[1]);
|
||||||
|
}
|
||||||
if (($expand['cname'] ?? null) !== $cname && trim($cname))
|
if (($expand['cname'] ?? null) !== $cname && trim($cname))
|
||||||
{
|
{
|
||||||
$expand['cont'] =& self::get_array(self::$request->content, $cname, false, true);
|
$expand['cont'] =& self::get_array(self::$request->content, $cname, false, true);
|
||||||
|
Loading…
Reference in New Issue
Block a user