Advertisement
Guest User

Untitled

a guest
Feb 13th, 2012
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 1.05 KB | None | 0 0
  1. Index: polldaddy-org.php
  2. ===================================================================
  3. --- polldaddy-org.php   (revision 503926)
  4. +++ polldaddy-org.php   (working copy)
  5. @@ -615,7 +615,7 @@
  6.                 $item_id = is_page() ? '_page_'.$post->ID : '_post_'.$post->ID;
  7.    
  8.             if ( empty( $title ) )
  9. -               $title = apply_filters( 'wp_title', $post->post_title );
  10. +               $title = apply_filters( 'wp_title', $post->post_title, '', '' );
  11.    
  12.             if ( empty( $permalink ) )
  13.                 $permalink = get_permalink( $post->ID );
  14. Index: rating.php
  15. ===================================================================
  16. --- rating.php  (revision 503926)
  17. +++ rating.php  (working copy)
  18. @@ -109,7 +109,7 @@
  19.             $rating_title_filter = get_option( 'pd-rating-title-filter' );
  20.            
  21.             if ( $rating_title_filter === false )
  22. -               $title = apply_filters( 'wp_title', $post->post_title );
  23. +               $title = apply_filters( 'wp_title', $post->post_title, '', '' );
  24.             elseif ( strlen( $rating_title_filter ) > 0 )
  25.                 $title = apply_filters( $rating_title_filter, $post->post_title );
  26.             else
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement