make saving of the areas working again

a textarea is always set, also if it is empty
This commit is contained in:
Lars Kneschke 2002-12-27 10:29:42 +00:00
parent b0e538a1ff
commit df3a3a347b

View File

@ -154,7 +154,7 @@
while (is_array($array) && list($var,$value) = each($array))
{
if ($value && $value != '**NULL**')
if (isset($value) && $value != '' && $value != '**NULL**')
{
$_p->add($_appname,$var,$value);
}