<?php
/*
Plugin Name: Free Agent
Description: In order for wordpress to download RSS feeds, check for updates, etc. it must make HTTP requests.  This plugin replaces the User-Agent with a generic string with no identifying information.
Version: 1.0
Author: Christian Höltje
Author URI: http://docwhat.gerf.org/

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 3 of the License.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
*/

function wp_free_agent_filter ( $content ) {
    return 'Mozilla/2.0 (compatible)';
}
add_filter('wp_user_agent', 'wp_free_agent_filter');


?>

