Changeset 9702 for trunk/wp-admin/includes/template.php
- Timestamp:
- 11/14/2008 11:54:15 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/includes/template.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/template.php
r9691 r9702 3178 3178 } 3179 3179 3180 function screen_meta($screen , $suffix = '') {3180 function screen_meta($screen) { 3181 3181 global $wp_meta_boxes; 3182 3182 … … 3221 3221 3222 3222 $help['post'] = __('<a href="http://codex.wordpress.org/Writing_Posts" target="_blank">Writing Posts</a>'); 3223 $help['general-settings'] = __('<a href="http://codex.wordpress.org/Settings_General_SubPanel" target="_blank">General Settings</a>'); 3223 $help['options-general'] = __('<a href="http://codex.wordpress.org/Settings_General_SubPanel" target="_blank">General Settings</a>'); 3224 $help = apply_filters('contextual_help_link', $help, $screen); 3224 3225 ?> 3225 3226 <div id="contextual-help-wrap" class="hidden"> … … 3243 3244 $contextual_help .= __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>'); 3244 3245 $contextual_help .= "</div>\n"; 3245 echo apply_filters('contextual_help', $contextual_help, $screen , $suffix);3246 echo apply_filters('contextual_help', $contextual_help, $screen); 3246 3247 ?> 3247 3248 </div>
Note: See TracChangeset
for help on using the changeset viewer.