mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-28 00:39:19 +01:00
Fix disabled tags evaluating to true when not set
This commit is contained in:
parent
417c1aa27f
commit
7e80a90caf
@ -495,6 +495,11 @@ class etemplate_widget
|
|||||||
{
|
{
|
||||||
$name = self::get_array($cont,substr($name,1));
|
$name = self::get_array($cont,substr($name,1));
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Content not set expands to ''
|
||||||
|
$name = '';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// RB: not sure why this business with entity encoding for square brakets, it messes up validation
|
// RB: not sure why this business with entity encoding for square brakets, it messes up validation
|
||||||
//$name = str_replace(array('[',']'),array('[',']'),$name);
|
//$name = str_replace(array('[',']'),array('[',']'),$name);
|
||||||
|
Loading…
Reference in New Issue
Block a user