Make WordPress Core

Opened 19 years ago

Closed 19 years ago

#1241 closed defect (bug) (fixed)

previous_post() and next_post() don't apply 'the_title' filters under the $title='yes' condition

Reported by: wyrfel's profile wyrfel Owned by: ryan's profile ryan
Milestone: Priority: normal
Severity: minor Version: 1.5
Component: Template Keywords:
Focuses: Cc:

Description

In case that $title='yes', the following call is done:

$string .= wptexturize($nextpost->post_title);

This should be replaced to make use of the filtering system instead:

$string .= apply_filters('the_title', $nextpost->post_title);

Change History (2)

#1 @wyrfel
19 years ago

  • Patch set to No

#2 @ryan
19 years ago

  • fixed_in_version set to 1.5.1
  • Owner changed from anonymous to rboren
  • Resolution changed from 10 to 20
  • Status changed from new to closed
Note: See TracTickets for help on using tickets.