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

git-svn-id: http://svn.automattic.com/wordpress/trunk@5744 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
markjaquith 2007-06-22 01:29:57 +00:00
parent eefdd4cef7
commit bf8b03a928
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 );