From 2cf3ba38f6a548fedfa0a360bbc5e67757633a19 Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Fri, 22 Jun 2007 01:29:57 +0000 Subject: [PATCH] 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 --- wp-admin/includes/template.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 6c408d6988..9eb9f0bc51 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -495,6 +495,16 @@ function parent_dropdown( $default = 0, $parent = 0, $level = 0 ) { } } +function browse_happy() { + $getit = __( 'WordPress recommends a better browser' ); + echo ' +

Browse Happy

+ '; +} + +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 );