Changeset 4258 for trunk/wp-includes/functions.php
- Timestamp:
- 09/27/2006 12:51:17 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r4201 r4258 1162 1162 function _mce_set_direction() { 1163 1163 global $wp_locale; 1164 if ('rtl' == $wp_locale->text_direction) 1164 1165 if ('rtl' == $wp_locale->text_direction) { 1165 1166 echo 'directionality : "rtl" ,'; 1167 echo 'theme_advanced_toolbar_align : "right" ,'; 1168 } 1166 1169 } 1167 1170 1168 1171 function _mce_load_rtl_plugin($input) { 1169 global $wp_locale; 1172 global $wp_locale; 1173 1170 1174 if ('rtl' == $wp_locale->text_direction) 1171 1175 $input[] = 'directionality'; … … 1175 1179 1176 1180 function _mce_add_direction_buttons($input) { 1177 global $wp_locale; 1181 global $wp_locale; 1182 1178 1183 if ('rtl' == $wp_locale->text_direction) { 1179 1184 $new_buttons = array('separator', 'ltr', 'rtl');
Note: See TracChangeset
for help on using the changeset viewer.