Changeset 280 for trunk

Show
Ignore:
Timestamp:
01/29/07 23:55:13 (5 years ago)
Author:
john
Message:

fixed a notice message for strip_slashes option

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/trax/vendor/trax/action_view/helpers.php

    r279 r280  
    293293        $html = "<$name "; 
    294294        $html .= $this->tag_options($options); 
    295         if($options['strip_slashes']) { 
     295        if(isset($options['strip_slashes'])) { 
    296296            $content = stripslashes($content);     
    297297        }