1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-26 00:32:42 +01:00

Double escape %N (%%N) for pht in Releeph project editor

Summary: Oops, `pht()` interpolates percent escape sequences, but this is a literal "%N".

Test Plan: Edit a Releeph project; notice no errors.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D5897
This commit is contained in:
Edward Speyer 2013-05-10 19:38:35 +01:00
parent 83bb113be7
commit 00cc6b1ba5

View file

@ -191,7 +191,7 @@ final class ReleephProjectEditController extends ReleephController {
->setValue($release_counter)
->setName('releaseCounter')
->setCaption(
pht("Used by the command line branch cutter's %N field")))
pht("Used by the command line branch cutter's %%N field")))
->appendChild(
id(new AphrontFormTextAreaControl())
->setLabel(pht('Pick Instructions'))