Index: polldaddy-org.php =================================================================== --- polldaddy-org.php (revision 503926) +++ polldaddy-org.php (working copy) @@ -615,7 +615,7 @@ $item_id = is_page() ? '_page_'.$post->ID : '_post_'.$post->ID; if ( empty( $title ) ) - $title = apply_filters( 'wp_title', $post->post_title ); + $title = apply_filters( 'wp_title', $post->post_title, '', '' ); if ( empty( $permalink ) ) $permalink = get_permalink( $post->ID ); Index: rating.php =================================================================== --- rating.php (revision 503926) +++ rating.php (working copy) @@ -109,7 +109,7 @@ $rating_title_filter = get_option( 'pd-rating-title-filter' ); if ( $rating_title_filter === false ) - $title = apply_filters( 'wp_title', $post->post_title ); + $title = apply_filters( 'wp_title', $post->post_title, '', '' ); elseif ( strlen( $rating_title_filter ) > 0 ) $title = apply_filters( $rating_title_filter, $post->post_title ); else