[Plugin: Revisionary] Problem with the hook applied to 'the_title' filter
-
In admin/admin_vry.php file, the callback function applied to the ‘the_title’ filter doesn’t take in account previous filters. For example, if you use the qtranslate plugin, you will get something like
<!–:es–>spanish title<!–:–><!–:en–>english title<!–:–> (revision)
It can be solved by changing the code in de 483 line from:
$title = sprintf( __( '%s (revision)', 'revisionary' ), $post->post_title );
to:
$title = sprintf( __( '%s (revision)', 'revisionary' ), $title);
- The topic ‘[Plugin: Revisionary] Problem with the hook applied to 'the_title' filter’ is closed to new replies.