Changeset 5013 for trunk/wp-includes/general-template.php
- Timestamp:
- 03/10/2007 03:56:35 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/general-template.php
r5005 r5013 583 583 if ( $ak_post_titles ) { 584 584 foreach ( $ak_post_titles as $ak_post_title ) { 585 586 $post_title = apply_filters( "the_title", $ak_post_title->post_title ); 587 $post_title = str_replace('"', '"', wptexturize( $post_title )); 588 585 589 if ( empty($ak_titles_for_day['day_'.$ak_post_title->dom]) ) 586 590 $ak_titles_for_day['day_'.$ak_post_title->dom] = ''; 587 591 if ( empty($ak_titles_for_day["$ak_post_title->dom"]) ) // first one 588 $ak_titles_for_day["$ak_post_title->dom"] = str_replace('"', '"', wptexturize($ak_post_title->post_title));592 $ak_titles_for_day["$ak_post_title->dom"] = $post_title; 589 593 else 590 $ak_titles_for_day["$ak_post_title->dom"] .= $ak_title_separator . str_replace('"', '"', wptexturize($ak_post_title->post_title));594 $ak_titles_for_day["$ak_post_title->dom"] .= $ak_title_separator . $post_title; 591 595 } 592 596 }
Note: See TracChangeset
for help on using the changeset viewer.