From 9644898ff11bbbf8b99fa7c768762c4f19046657 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Fri, 15 Aug 2003 19:39:58 +0000 Subject: [PATCH] Temp fix for help links. git-svn-id: https://develop.svn.wordpress.org/trunk@320 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/b2header.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/wp-admin/b2header.php b/wp-admin/b2header.php index 5b8ec8b4e8..b5adae236d 100644 --- a/wp-admin/b2header.php +++ b/wp-admin/b2header.php @@ -9,8 +9,8 @@ require_once($abspath.$b2inc.'/xmlrpc.inc'); require_once($abspath.$b2inc.'/xmlrpcs.inc'); function gethelp_link($this_file, $helptag) { - $url = 'help/en/'.$this_file.'.help.html#'.$helptag; - $s = ' [?]'; + $url = 'http://wordpress.org/docs/reference/links/#'.$helptag; + $s = ' ?'; return $s; } @@ -21,12 +21,12 @@ timer_start(); get_currentuserinfo(); -$posts_per_page=get_settings('posts_per_page'); -$what_to_show=get_settings('what_to_show'); -$archive_mode=get_settings('archive_mode'); -$time_difference=get_settings('time_difference'); -$date_format=stripslashes(get_settings('date_format')); -$time_format=stripslashes(get_settings('time_format')); +$posts_per_page = get_settings('posts_per_page'); +$what_to_show = get_settings('what_to_show'); +$archive_mode = get_settings('archive_mode'); +$time_difference = get_settings('time_difference'); +$date_format = stripslashes(get_settings('date_format')); +$time_format = stripslashes(get_settings('time_format')); $admin_area_charset = (!isset($admin_area_charset)) ? 'iso-8859-15' : $admin_area_charset;