Changeset 10338 for trunk/wp-admin/includes/post.php
- Timestamp:
- 01/09/2009 01:05:16 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/post.php
r10258 r10338 1118 1118 1119 1119 $baseurl = includes_url('js/tinymce'); 1120 1121 $mce_css = $baseurl . '/wordpress.css';1122 $mce_css = apply_filters('mce_css', $mce_css);1123 1120 1124 1121 $mce_locale = ( '' == get_locale() ) ? 'en' : strtolower( substr(get_locale(), 0, 2) ); // only ISO 639-1 … … 1269 1266 'accessibility_focus' => true, 1270 1267 'tab_focus' => ':prev,:next', 1271 'content_css' => "$mce_css",1272 1268 'save_callback' => 'switchEditors.saveCallback', 1273 1269 'wpeditimage_disable_captions' => $no_captions, 1274 1270 'plugins' => "$plugins" 1275 1271 ); 1272 1273 $mce_css = apply_filters('mce_css', ''); 1274 1275 if ( ! empty($mce_css) ) 1276 $initArray['content_css'] = "$mce_css"; 1276 1277 1277 1278 // For people who really REALLY know what they're doing with TinyMCE
Note: See TracChangeset
for help on using the changeset viewer.