#1190: AgaviToolkit::literalize returns null when given boolean false
--------------------------------------+-------------------------------------
 Reporter:  hzilla <h...@…>           |       Owner:  david
     Type:  defect                    |      Status:  new  
 Priority:  normal                    |   Milestone:  1.0.2
Component:  util                      |     Version:  1.0.1
 Severity:  normal                    |    Keywords:       
Has_patch:  0                         |  
--------------------------------------+-------------------------------------
 As stated in summary.

 {{{
 if($value == null) {
         // null value
         return null;
 }
 }}}

 should read

 {{{
 if($value === null) {
         // null value
         return null;
 }
 }}}

-- 
Ticket URL: <http://trac.agavi.org/ticket/1190>
Agavi <http://www.agavi.org/>
An MVC Framework for PHP5



_______________________________________________
Agavi Tickets Mailing List
[email protected]
http://lists.agavi.org/mailman/listinfo/tickets

Reply via email to