Changeset 834
- Timestamp:
- 02/05/2004 03:25:00 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/kses.php
r832 r834 10 10 # 11 11 # [kses strips evil scripts!] 12 13 // You could override this in your my-hacks.php file 14 if (defined('CUSTOM_TAGS') && !CUSTOM_TAGS) { // Let's people override the allowed tags in their my-hacks.php 12 if (!defined('CUSTOM_TAGS')) 13 define('CUSTOM_TAGS', false); 14 15 // You can override this in your my-hacks.php file 16 if (!CUSTOM_TAGS) { 15 17 $allowedtags = array( 16 18 'a' => array(
Note: See TracChangeset
for help on using the changeset viewer.