Changeset 28094 for trunk/src/wp-includes/functions.php
- Timestamp:
- 04/13/2014 12:22:56 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r27855 r28094 2458 2458 * direction set to 'rtl'. 2459 2459 * 2460 * Fills in the 'directionality', 'plugins', and 'theme_advanced_button1' array 2461 * keys. These keys are then returned in the $input array. 2460 * Fills in the 'directionality' setting, enables the 'directionality' plugin, 2461 * and adds the 'ltr' button to 'toolbar1', formerly 'theme_advanced_buttons1' array 2462 * keys. These keys are then returned in the $input (TinyMCE settings) array. 2462 2463 * 2463 2464 * @access private 2464 2465 * @since 2.1.0 2465 2466 * 2466 * @param array $input MCE pluginarray.2467 * @param array $input MCE settings array. 2467 2468 * @return array Direction set for 'rtl', if needed by locale. 2468 2469 */ … … 2471 2472 $input['directionality'] = 'rtl'; 2472 2473 $input['plugins'] .= ',directionality'; 2473 $input['t heme_advanced_buttons1'] .= ',ltr';2474 $input['toolbar1'] .= ',ltr'; 2474 2475 } 2475 2476
Note: See TracChangeset
for help on using the changeset viewer.