<?php
/*
Plugin Name: Kill All 'Not Checked' Messages
Description: Removes <em>all</em> of the "Not Checked for Updates" messages by adding a filter to 'plugin_updates_unknown'.
Version: 0.1
Date: 2008-06-14
Author: Stephen Rider
Author URI: http://striderweb.com/
*/

add_filter('plugin_updates_unknown','kill_all_unknowns');

function kill_all_unknowns() {
	return '';
}

?>
