Make WordPress Core

Changeset 5744


Ignore:
Timestamp:
06/22/2007 01:29:57 AM (18 years ago)
Author:
markjaquith
Message:

Matt requested that I revert this ([5742]). see #4254 for discussion

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/template.php

    r5742 r5744  
    496496}
    497497
     498function browse_happy() {
     499    $getit = __( 'WordPress recommends a better browser' );
     500    echo '
     501        <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>
     502        ';
     503}
     504
     505if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false)
     506    add_action( 'admin_footer', 'browse_happy' );
     507
    498508function the_attachment_links( $id = false ) {
    499509    $id = (int) $id;
Note: See TracChangeset for help on using the changeset viewer.