mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 14:52:41 +01:00
Make the meme cache case-sensitive
Summary: Fixes T13172. At one point we always capitalized all the text, and the cache uses capitalized text. However, we stopped capitalizing the text at some point. Modern memes are more more subtle than old memes, and when we eventualy add support for things like "explodey brain" we'll certainly want to support mixed case. Practically, this stops you from changing the capitalization of a cached meme. Get rid of the cache transform. Test Plan: none lul (I don't have `gd` installed locally and buiding it requires building libjpeg and libpng or giving up and using `brew`. I'l vet this in production.) Reviewers: amckinley Reviewed By: amckinley Maniphest Tasks: T13172 Differential Revision: https://secure.phabricator.com/D19537
This commit is contained in:
parent
682c3bc9ee
commit
9e1a1577c3
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue