Nofollow post issue

Hi everyone,

I am having some trouble with my posts because every links on is automatically considered as nofollow.

How can I solve this issue? Thanks

As per the current version of rtpanel -> Version 2.2.3 the following code should be used.

  
function rtp_remove_nofollow() {  
    remove_filter( 'the_content', 'rtp_nofollow' );  
    remove_filter( 'the_excerpt', 'rtp_nofollow' );  
}  
add_action( 'init', 'rtp_remove_nofollow' );