Changeset 31874 for trunk/src/wp-includes/functions.php
- Timestamp:
- 03/24/2015 08:32:23 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r31733 r31874 2907 2907 if ( is_rtl() ) { 2908 2908 $input['directionality'] = 'rtl'; 2909 $input['plugins'] .= ',directionality'; 2910 $input['toolbar1'] .= ',ltr'; 2909 2910 if ( ! empty( $input['plugins'] ) && strpos( $input['plugins'], 'directionality' ) === false ) { 2911 $input['plugins'] .= ',directionality'; 2912 } 2913 2914 if ( ! empty( $input['toolbar1'] ) && ! preg_match( '/\bltr\b/', $input['toolbar1'] ) ) { 2915 $input['toolbar1'] .= ',ltr'; 2916 } 2911 2917 } 2912 2918
Note: See TracChangeset
for help on using the changeset viewer.