<?php
/*
Plugin Name: Kill This 'Not Checked' Message
Description: Removes the "Not Checked for Updates" message <em>for this plugin only</em> by adding a filter to 'plugin_updates_unknown'.  Of course we could change it to something else instead.
Version: 0.1
Date: 2008-06-14
Author: Stephen Rider
Author URI: http://striderweb.com/
*/

add_filter('plugin_updates_unknown','kill_this_unknown', 10, 2);

function kill_this_unknown($output, $file) {
	static $this_plugin;
	if( !$this_plugin ) $this_plugin = plugin_basename(__FILE__);
	
	if( $file == $this_plugin ) $output = '';
	return $output;
}

?>
