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

git-svn-id: https://develop.svn.wordpress.org/trunk@5744 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2007-06-22 01:29:57 +00:00
parent f6f946df9a
commit 2cf3ba38f6
1 changed files with 10 additions and 0 deletions

View File

@ -495,6 +495,16 @@ function parent_dropdown( $default = 0, $parent = 0, $level = 0 ) {
}
}
function browse_happy() {
$getit = __( 'WordPress recommends a better browser' );
echo '
<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>
';
}
if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false)
add_action( 'admin_footer', 'browse_happy' );
function the_attachment_links( $id = false ) {
$id = (int) $id;
$post = & get_post( $id );