fixed wrongly display blur text for value "0"

This commit is contained in:
Ralf Becker 2010-08-12 18:03:03 +00:00
parent f90e1da24f
commit f156301f25

View File

@ -1133,7 +1133,7 @@ class etemplate extends boetemplate
{
if ($blur)
{
if (empty($value))
if ((string)$value === '')
{
$value = $blur;
}