Changeset 8113

Show
Ignore:
Timestamp:
08/23/09 21:22:44 (7 months ago)
Author:
p_lindheimer
Message:

closes #3608 use htmlspecialchars to remove some html errors

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/branches/2.6/amp_conf/htdocs/admin/views/freepbx_admin.php

    r7646 r8113  
    113113                } 
    114114                if (isset($row['disabled']) && $row['disabled']) { 
    115                         echo $label_text
     115                        echo htmlspecialchars($label_text)
    116116                } else { 
    117                         echo '<a href="'.$href.'" '.$extra_attributes.' >'. $label_text . "</a>"; 
     117                        echo '<a href="'.$href.'" '.$extra_attributes.' >'. htmlspecialchars($label_text) . "</a>"; 
    118118                } 
    119119                echo "</li>\n";