How do we hide upgrade now message in admin panel for wordpress 2.9.2 ? is there's any ? i use
add_action( 'init', create_function( '$a', "remove_action( 'init', 'wp_version_check' );" ), 2 ); add_filter( 'pre_option_update_core', create_function( '$a', "return null;" ) );
but it seem it's not working.