Changeset 6110 for trunk/wp-includes/functions.php
- Timestamp:
- 09/13/2007 06:23:23 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r6108 r6110 1241 1241 $admin_dir = 'wp-admin/'; 1242 1242 1243 if ( !did_action('admin_head') ) : 1243 if ( !function_exists('did_action') || !did_action('admin_head') ) : 1244 status_header(500); 1245 nocache_headers(); 1244 1246 header('Content-Type: text/html; charset=utf-8'); 1245 1247 1246 if ( empty($title) ) 1247 $title = __('WordPress › Error'); 1248 1249 1248 if ( empty($title) ){ 1249 if( function_exists('__') ) 1250 $title = __('WordPress › Error'); 1251 else 1252 $title = 'WordPress › Error'; 1253 } 1250 1254 1251 1255 ?>
Note: See TracChangeset
for help on using the changeset viewer.