Make WordPress Core

Ticket #4254: admin_functions.diff

File admin_functions.diff, 713 bytes (added by cpoteet, 17 years ago)

Remove "browse happy" logo

  • wp-admin/includes/template.php

     
    491491        }
    492492}
    493493
    494 function browse_happy() {
    495         $getit = __( 'WordPress recommends a better browser' );
    496         echo '
    497                 <p id="bh" style="text-align: center;"><a href="http://browsehappy.com/" title="'.$getit.'"><img src="images/browse-happy.gif" alt="Browse Happy" /></a></p>
    498                 ';
    499 }
    500 
    501 if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false)
    502         add_action( 'admin_footer', 'browse_happy' );
    503 
    504494function the_attachment_links( $id = false ) {
    505495        $id = (int) $id;
    506496        $post = & get_post( $id );