Changeset 3751 for trunk/wp-includes/functions-formatting.php
- Timestamp:
- 04/25/2006 08:46:19 AM (20 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/functions-formatting.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions-formatting.php
r3717 r3751 405 405 1.0 First Version 406 406 */ 407 function balanceTags($text, $is_comment = 0 ) {408 409 if ( get_option('use_balanceTags') == 0)407 function balanceTags($text, $is_comment = 0, $force = false) { 408 409 if ( !$force && get_option('use_balanceTags') == 0 ) 410 410 return $text; 411 411
Note: See TracChangeset
for help on using the changeset viewer.