diff --git a/src/applications/macro/engine/PhabricatorMemeEngine.php b/src/applications/macro/engine/PhabricatorMemeEngine.php index 175aa2fb46..3e87a304c9 100644 --- a/src/applications/macro/engine/PhabricatorMemeEngine.php +++ b/src/applications/macro/engine/PhabricatorMemeEngine.php @@ -104,8 +104,8 @@ final class PhabricatorMemeEngine extends Phobject { private function newTransformHash() { $properties = array( 'kind' => 'meme', - 'above' => phutil_utf8_strtoupper($this->getAboveText()), - 'below' => phutil_utf8_strtoupper($this->getBelowText()), + 'above' => $this->getAboveText(), + 'below' => $this->getBelowText(), ); $properties = phutil_json_encode($properties);