mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-23 22:10:55 +01:00
Settings - upgrade monospace font regexp to support '.'
Summary: this data is a little weird since its user-entered and we need to put it in a web page un-escaped for the font to load correctly. Ergo, we use a regex to make the input safe / sane, and said regex needs to support a '.'. Fixes T5810. Test Plan: added Fixedsys Excelsior 3.01 to my system and was able to set my preference and get the new font Reviewers: epriestley Reviewed By: epriestley Subscribers: dereckson, epriestley, Korvin Maniphest Tasks: T5810 Differential Revision: https://secure.phabricator.com/D10163
This commit is contained in:
parent
9c1c4bb5ae
commit
20a65b21eb
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ final class PhabricatorSettingsPanelDisplayPreferences
|
|||
$monospaced = $request->getStr($pref_monospaced);
|
||||
|
||||
// Prevent the user from doing stupid things.
|
||||
$monospaced = preg_replace('/[^a-z0-9 ,"]+/i', '', $monospaced);
|
||||
$monospaced = preg_replace('/[^a-z0-9 ,".]+/i', '', $monospaced);
|
||||
|
||||
$preferences->setPreference($pref_titles, $request->getStr($pref_titles));
|
||||
$preferences->setPreference($pref_editor, $request->getStr($pref_editor));
|
||||
|
|
Loading…
Reference in a new issue