Changeset 1231

Show
Ignore:
Timestamp:
05/23/07 15:37:22 (6 years ago)
Author:
dana
Message:

Added the following HTML tags to the allowed list of contents for a Langstring: <br/><hr><script></script><div></div>

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog-auth/wifidog/classes/Content/Langstring/Langstring.php

    r1204 r1231  
    7171        parent::__construct($content_id); 
    7272        $db = AbstractDb::getObject(); 
    73         /** 
    74         * HTML allowed to be used 
    75          */ 
    76         $this->allowed_html_tags = "<a><br><b><h1><h2><h3><h4><i><img><li><ol><p><strong><u><ul><li>"; 
     73            /** 
     74        * HTML allowed to be used 
     75        */ 
     76                $this->allowed_html_tags = "<a><br><b><h1><h2><h3><h4><i><img><li><ol><p><strong><u><ul><li><br/><hr><script></script><div></div>"; 
    7777        $this->mBd = &$db; 
    7878    }