Changeset 45730 for trunk/src/wp-includes/class-wp-editor.php
- Timestamp:
- 08/03/2019 08:20:42 PM (6 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-editor.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-editor.php
r45621 r45730 758 758 continue; 759 759 } elseif ( ! empty( $value ) && is_string( $value ) && ( 760 ( '{' == $value {0} && '}' == $value{strlen( $value ) - 1}) ||761 ( '[' == $value {0} && ']' == $value{strlen( $value ) - 1}) ||760 ( '{' == $value[0] && '}' == $value[ strlen( $value ) - 1 ] ) || 761 ( '[' == $value[0] && ']' == $value[ strlen( $value ) - 1 ] ) || 762 762 preg_match( '/^\(?function ?\(/', $value ) ) ) { 763 763
Note: See TracChangeset
for help on using the changeset viewer.