From b9aff187d9834c4d1dc929e62619ed003c0fad16 Mon Sep 17 00:00:00 2001 From: epriestley Date: Wed, 1 Aug 2012 12:40:23 -0700 Subject: [PATCH] Minor, fix typeahead string casting issue with symbols. Thought I tested this. :/ Auditors: vrana, btrahan --- .../typeahead/storage/PhabricatorTypeaheadResult.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/typeahead/storage/PhabricatorTypeaheadResult.php b/src/applications/typeahead/storage/PhabricatorTypeaheadResult.php index d3484a6542..1cba76aa9d 100644 --- a/src/applications/typeahead/storage/PhabricatorTypeaheadResult.php +++ b/src/applications/typeahead/storage/PhabricatorTypeaheadResult.php @@ -70,7 +70,7 @@ final class PhabricatorTypeaheadResult { public function getWireFormat() { $data = array( $this->name, - $this->uri, + $this->uri ? (string)$this->uri : null, $this->phid, $this->priorityString, $this->displayName,