Emoji: adjust $wpsmiliestrans

Swap simple-smile.png with SLIGHTLY SMILING FACE
and frownie.png with SLIGHTLY FROWNING FACE

Fixes #31710.


Built from https://develop.svn.wordpress.org/trunk@36336


git-svn-id: http://core.svn.wordpress.org/trunk@36303 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Ella Iseulde Van Dorpe 2016-01-17 22:28:29 +00:00
parent 435196fc40
commit dea6197932
2 changed files with 7 additions and 7 deletions

View File

@ -3153,7 +3153,7 @@ function smilies_init() {
':twisted:' => "\xf0\x9f\x98\x88", ':twisted:' => "\xf0\x9f\x98\x88",
':arrow:' => "\xe2\x9e\xa1", ':arrow:' => "\xe2\x9e\xa1",
':shock:' => "\xf0\x9f\x98\xaf", ':shock:' => "\xf0\x9f\x98\xaf",
':smile:' => 'simple-smile.png', ':smile:' => "\xf0\x9f\x99\x82",
':???:' => "\xf0\x9f\x98\x95", ':???:' => "\xf0\x9f\x98\x95",
':cool:' => "\xf0\x9f\x98\x8e", ':cool:' => "\xf0\x9f\x98\x8e",
':evil:' => "\xf0\x9f\x91\xbf", ':evil:' => "\xf0\x9f\x91\xbf",
@ -3167,11 +3167,11 @@ function smilies_init() {
':eek:' => "\xf0\x9f\x98\xae", ':eek:' => "\xf0\x9f\x98\xae",
':lol:' => "\xf0\x9f\x98\x86", ':lol:' => "\xf0\x9f\x98\x86",
':mad:' => "\xf0\x9f\x98\xa1", ':mad:' => "\xf0\x9f\x98\xa1",
':sad:' => 'frownie.png', ':sad:' => "\xf0\x9f\x99\x81",
'8-)' => "\xf0\x9f\x98\x8e", '8-)' => "\xf0\x9f\x98\x8e",
'8-O' => "\xf0\x9f\x98\xaf", '8-O' => "\xf0\x9f\x98\xaf",
':-(' => 'frownie.png', ':-(' => "\xf0\x9f\x99\x81",
':-)' => 'simple-smile.png', ':-)' => "\xf0\x9f\x99\x82",
':-?' => "\xf0\x9f\x98\x95", ':-?' => "\xf0\x9f\x98\x95",
':-D' => "\xf0\x9f\x98\x80", ':-D' => "\xf0\x9f\x98\x80",
':-P' => "\xf0\x9f\x98\x9b", ':-P' => "\xf0\x9f\x98\x9b",
@ -3182,8 +3182,8 @@ function smilies_init() {
// This one transformation breaks regular text with frequency. // This one transformation breaks regular text with frequency.
// '8)' => "\xf0\x9f\x98\x8e", // '8)' => "\xf0\x9f\x98\x8e",
'8O' => "\xf0\x9f\x98\xaf", '8O' => "\xf0\x9f\x98\xaf",
':(' => 'frownie.png', ':(' => "\xf0\x9f\x99\x81",
':)' => 'simple-smile.png', ':)' => "\xf0\x9f\x99\x82",
':?' => "\xf0\x9f\x98\x95", ':?' => "\xf0\x9f\x98\x95",
':D' => "\xf0\x9f\x98\x80", ':D' => "\xf0\x9f\x98\x80",
':P' => "\xf0\x9f\x98\x9b", ':P' => "\xf0\x9f\x98\x9b",

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.5-alpha-1453051752378'; $wp_version = '4.5-alpha-1453069694621';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.