Changeset 18074
- Timestamp:
- 05/30/2011 02:12:08 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/post.php
r18071 r18074 1650 1650 $mce_options .= $k . ':' . $val . ', '; 1651 1651 continue; 1652 } elseif ( is_string($v) && ( ('{' == $v{0} && '}' == $v{strlen($v) - 1}) || ('[' == $v{0} && ']' == $v{strlen($v) - 1}) || preg_match('/^\(?function ?\(/', $v) ) ) {1652 } elseif ( !empty($v) && is_string($v) && ( ('{' == $v{0} && '}' == $v{strlen($v) - 1}) || ('[' == $v{0} && ']' == $v{strlen($v) - 1}) || preg_match('/^\(?function ?\(/', $v) ) ) { 1653 1653 $mce_options .= $k . ':' . $v . ', '; 1654 1654 continue;
Note: See TracChangeset
for help on using the changeset viewer.