Changeset 663
- Timestamp:
- 12/30/2003 08:34:57 AM (22 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
-
kses.php (modified) (1 diff)
-
template-functions.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/kses.php
r650 r663 15 15 'strong' => array(), 16 16 'code' => array(), 17 'acronym' => array('title'), 18 'abbr' => array('title'), 17 19 'em' => array(), 18 20 'strike' => array(), 19 'a' => array('href' => array('minlen' => 3, 'maxlen' =>50),20 'title' => array('valueless' => 'n'),21 'a' => array('href' => array('minlen' => 6, 'maxlen' => 250), 22 'title', 21 23 'rel' => array('minlen' => 3, 'maxlen' => 250)), 22 24 'blockquote' => array('cite' => array()), 25 'del' => array('datetime'), 23 26 'br' => array()); 24 27 -
trunk/wp-includes/template-functions.php
r659 r663 551 551 552 552 function the_date($d='', $before='', $after='', $echo = true) { 553 global $id, $post, $da y, $previousday, $dateformat, $newday;553 global $id, $post, $dateday, $previousday, $dateformat, $newday; 554 554 $the_date = ''; 555 if ($day != $previousday) { 555 $dateday = mysql2date('Yd', $post->post_date); 556 if ($dateday != $previousday) { 556 557 $the_date .= $before; 557 558 if ($d=='') { … … 561 562 } 562 563 $the_date .= $after; 563 $previousday = $da y;564 $previousday = $dateday; 564 565 } 565 566 $the_date = apply_filters('the_date', $the_date); … … 1688 1689 $comment_text = convert_bbcode($comment_text); 1689 1690 $comment_text = convert_gmcode($comment_text); 1690 $comment_text = convert_smilies($comment_text);1691 1691 $comment_text = make_clickable($comment_text); 1692 1692 $comment_text = balanceTags($comment_text,1); 1693 1693 $comment_text = apply_filters('comment_text', $comment_text); 1694 $comment_text = convert_smilies($comment_text); 1694 1695 echo $comment_text; 1695 1696 }
Note: See TracChangeset
for help on using the changeset viewer.