From d17b9928954efc7be1c3d7eed40cb2aad1531f88 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Tue, 4 Apr 2006 00:25:04 +0000 Subject: [PATCH] Remove use of deprecated variables, don't show bookmarklet form to unrecognized browser. git-svn-id: https://develop.svn.wordpress.org/trunk@3685 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/post-new.php | 184 +++++++++++++++++++++--------------------- wp-includes/vars.php | 16 ++-- wp-settings.php | 1 - 3 files changed, 101 insertions(+), 100 deletions(-) diff --git a/wp-admin/post-new.php b/wp-admin/post-new.php index 76713cd2f8..329dbed59c 100644 --- a/wp-admin/post-new.php +++ b/wp-admin/post-new.php @@ -1,90 +1,94 @@ - -
-

-You can also e-mail the admin to ask for a promotion.
-When you’re promoted, just reload this page and you’ll be able to blog. :)'), get_settings('admin_email')); ?> -

-
- -

View site »'), get_bloginfo('home') . '/'); ?>

- -
-

- 15 ) $num_drafts = 15; - for ( $i = 0; $i < $num_drafts; $i++ ) { - $draft = $drafts[$i]; - if ( 0 != $i ) - echo ', '; - if ( empty($draft->post_title) ) - $draft->post_title = sprintf(__('Post # %s'), $draft->ID); - echo "$draft->post_title"; - } - - if ( 15 < count($drafts) ) { ?> - , » - -.

-
- -
-

-

-

- - - - - - -
-
-
- - - - - - -

-
- + +
+

+You can also e-mail the admin to ask for a promotion.
+When you’re promoted, just reload this page and you’ll be able to blog. :)'), get_settings('admin_email')); ?> +

+
+ +

View site »'), get_bloginfo('home') . '/'); ?>

+ +
+

+ 15 ) $num_drafts = 15; + for ( $i = 0; $i < $num_drafts; $i++ ) { + $draft = $drafts[$i]; + if ( 0 != $i ) + echo ', '; + if ( empty($draft->post_title) ) + $draft->post_title = sprintf(__('Post # %s'), $draft->ID); + echo "$draft->post_title"; + } + + if ( 15 < count($drafts) ) { ?> + , » + +.

+
+ + + +
+

+

+

+ + + + + + +
+
+
+ + + + + + +

+
+ + + \ No newline at end of file diff --git a/wp-includes/vars.php b/wp-includes/vars.php index 934f5eb087..ef7e7a035e 100644 --- a/wp-includes/vars.php +++ b/wp-includes/vars.php @@ -14,20 +14,18 @@ if (preg_match('#([^/]+.php)#', $PHP_SELF, $self_matches)) { // Simple browser detection $is_lynx = 0; $is_gecko = 0; $is_winIE = 0; $is_macIE = 0; $is_opera = 0; $is_NS4 = 0; -if (!isset($HTTP_USER_AGENT)) { - $HTTP_USER_AGENT = $_SERVER['HTTP_USER_AGENT']; -} -if (preg_match('/Lynx/', $HTTP_USER_AGENT)) { + +if (preg_match('/Lynx/', $_SERVER['HTTP_USER_AGENT'])) { $is_lynx = 1; -} elseif (preg_match('/Gecko/', $HTTP_USER_AGENT)) { +} elseif (preg_match('/Gecko/', $_SERVER['HTTP_USER_AGENT'])) { $is_gecko = 1; -} elseif ((preg_match('/MSIE/', $HTTP_USER_AGENT)) && (preg_match('/Win/', $HTTP_USER_AGENT))) { +} elseif ((preg_match('/MSIE/', $_SERVER['HTTP_USER_AGENT'])) && (preg_match('/Win/', $_SERVER['HTTP_USER_AGENT']))) { $is_winIE = 1; -} elseif ((preg_match('/MSIE/', $HTTP_USER_AGENT)) && (preg_match('/Mac/', $HTTP_USER_AGENT))) { +} elseif ((preg_match('/MSIE/', $_SERVER['HTTP_USER_AGENT'])) && (preg_match('/Mac/', $_SERVER['HTTP_USER_AGENT']))) { $is_macIE = 1; -} elseif (preg_match('/Opera/', $HTTP_USER_AGENT)) { +} elseif (preg_match('/Opera/', $_SERVER['HTTP_USER_AGENT'])) { $is_opera = 1; -} elseif ((preg_match('/Nav/', $HTTP_USER_AGENT) ) || (preg_match('/Mozilla\/4\./', $HTTP_USER_AGENT))) { +} elseif ((preg_match('/Nav/', $_SERVER['HTTP_USER_AGENT']) ) || (preg_match('/Mozilla\/4\./', $_SERVER['HTTP_USER_AGENT']))) { $is_NS4 = 1; } $is_IE = (($is_macIE) || ($is_winIE)); diff --git a/wp-settings.php b/wp-settings.php index dfe17b2a6f..275c2e1087 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -18,7 +18,6 @@ function unregister_GLOBALS() { unregister_GLOBALS(); -$HTTP_USER_AGENT = getenv('HTTP_USER_AGENT'); unset( $wp_filter, $cache_userdata, $cache_lastcommentmodified, $cache_lastpostdate, $cache_settings, $category_cache, $cache_categories ); if ( ! isset($blog_id) )