Changeset 32104
- Timestamp:
- 04/10/2015 06:19:39 AM (10 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r31967 r32104 2972 2972 ':lol:' => "\xf0\x9f\x98\x84", 2973 2973 ':mad:' => "\xf0\x9f\x98\xa1", 2974 ':sad:' => "\xf0\x9f\x98\xa6",2974 ':sad:' => 'frownie.png', 2975 2975 '8-)' => "\xf0\x9f\x98\x8e", 2976 2976 '8-O' => "\xf0\x9f\x98\xaf", 2977 ':-(' => "\xf0\x9f\x98\xa6",2977 ':-(' => 'frownie.png', 2978 2978 ':-)' => 'simple-smile.png', 2979 2979 ':-?' => "\xf0\x9f\x98\xaf", … … 2987 2987 // '8)' => "\xf0\x9f\x98\x8e", 2988 2988 '8O' => "\xf0\x9f\x98\xaf", 2989 ':(' => "\xf0\x9f\x98\xa6",2989 ':(' => 'frownie.png', 2990 2990 ':)' => 'simple-smile.png', 2991 2991 ':?' => "\xf0\x9f\x98\xaf", -
trunk/tests/phpunit/tests/formatting/Smilies.php
r31909 r32104 170 170 array ( 171 171 '8-O :-(', 172 "\xf0\x9f\x98\xaf \xf0\x9f\x98\xa6"172 "\xf0\x9f\x98\xaf <img src=\"http://example.org/wp-includes/images/smilies/frownie.png\" alt=\":-(\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />" 173 173 ), 174 174 array ( … … 182 182 array ( 183 183 '8-) :-(', 184 "\xf0\x9f\x98\x8e \xf0\x9f\x98\xa6"184 "\xf0\x9f\x98\x8e <img src=\"http://example.org/wp-includes/images/smilies/frownie.png\" alt=\":-(\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />" 185 185 ), 186 186 array ( … … 190 190 array ( 191 191 '8O :twisted: :( :? :(', 192 "\xf0\x9f\x98\xaf \xf0\x9f\x98\x88 \xf0\x9f\x98\xa6 \xf0\x9f\x98\xaf \xf0\x9f\x98\xa6"192 "\xf0\x9f\x98\xaf \xf0\x9f\x98\x88 <img src=\"http://example.org/wp-includes/images/smilies/frownie.png\" alt=\":(\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> \xf0\x9f\x98\xaf <img src=\"http://example.org/wp-includes/images/smilies/frownie.png\" alt=\":(\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />" 193 193 ), 194 194 );
Note: See TracChangeset
for help on using the changeset viewer.