Changeset 3148

Show
Ignore:
Timestamp:
05/03/08 16:37:16 (2 months ago)
Author:
pmjones
Message:

fix to my change in clay's code -- i really should just leave well-enough alone ;-)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Solar/View/Helper/Attribs.php

    r3144 r3148  
    4545            // using the string cast and strict equality to make sure that 
    4646            // a string zero is not counted as an empty value. 
    47             if ((string) $val === '') { 
     47            if ((string) $val !== '') { 
    4848                $xhtml .= ' ' . $this->_view->escape($key) 
    4949                       .  '="' . $this->_view->escape($val) . '"';