<?php
/*
Plugin Name: NCR Everywhere
Plugin URI: http://wordpress.org/support/topic/100920
Description: Converts HTML entities (like &#38;quot; or &#38;amp;) to their numeric equivalents (&#38;#34; or &#38;#38) wherever WordPress doesn't.
Author: Kaf Oseo
Version: R1
Author URI: http://szub.net

    Copyright (c) 2007 Kaf Oseo (http://szub.net)
    NCR Everywhere is released under the GNU General Public License
    (GPL) http://www.gnu.org/licenses/gpl.txt

    This is a WordPress plugin (http://wordpress.org).
*/

add_filter('category_description''ent2ncr'42);
add_filter('list_cats''ent2ncr'42);
add_filter('comment_author''ent2ncr'42);
add_filter('comment_text''ent2ncr'42);
add_filter('single_post_title''ent2ncr'42);
add_filter('the_title''ent2ncr'42);
add_filter('the_content''ent2ncr'42);
add_filter('the_excerpt''ent2ncr'42);
add_filter('bloginfo''ent2ncr'42);

?>