From ec6f24ad1bd71b1bcdf44eef9ba19e41dc6b9a7c Mon Sep 17 00:00:00 2001 From: vrana Date: Wed, 14 Mar 2012 18:43:43 -0700 Subject: [PATCH] Use glyph in search Summary: It seems that (?) is error. Test Plan: Search. Reviewers: epriestley Reviewed By: epriestley CC: aran, epriestley Differential Revision: https://secure.phabricator.com/D1904 --- .../controller/base/PhabricatorSearchBaseController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/applications/search/controller/base/PhabricatorSearchBaseController.php b/src/applications/search/controller/base/PhabricatorSearchBaseController.php index a7e289789c..2eaf11f348 100644 --- a/src/applications/search/controller/base/PhabricatorSearchBaseController.php +++ b/src/applications/search/controller/base/PhabricatorSearchBaseController.php @@ -1,7 +1,7 @@ setApplicationName('Search'); $page->setBaseURI('/search/'); $page->setTitle(idx($data, 'title')); - $page->setGlyph("(?)"); + $page->setGlyph("\xC2\xBF"); $page->appendChild($view); $response = new AphrontWebpageResponse();