Ignore:
Timestamp:
10/03/07 21:38:21 (5 years ago)
Author:
hverton
Message:

More xhtml fixes
Added forum poll configuration to the forum admin module

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/template-plugins/modifier.escape.php

    r851 r864  
    3030        case 'entities': 
    3131//            $string = htmlspecialchars($string, ENT_NOQUOTES, $char_set); 
    32             return str_replace("&lt;", "<", str_replace("&gt;", ">", $string)); 
     32            return str_replace("&lt;", "<", str_replace("&gt;", ">", str_replace('&amp;', '&', str_replace('&', '&amp;', $string)))); 
    3333 
    3434        case 'html': 
Note: See TracChangeset for help on using the changeset viewer.