Make WordPress Core


Ignore:
Timestamp:
02/06/2005 03:40:08 AM (19 years ago)
Author:
rboren
Message:

Correctly add args to strings that contain only a query string and not a full URI.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/template-functions-post.php

    r2208 r2227  
    3232    $title = get_the_title();
    3333    if (!empty($title)) {
    34         $title = apply_filters('the_title', $before . $title . $after);
     34        $title = apply_filters('the_title', $before . $title . $after, $before, $after);
    3535        if ($echo)
    3636            echo $title;
Note: See TracChangeset for help on using the changeset viewer.