mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-27 01:02:42 +01:00
Minor, fix typeahead string casting issue with symbols. Thought I tested this. :/
Auditors: vrana, btrahan
This commit is contained in:
parent
a476e5c08d
commit
b9aff187d9
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ final class PhabricatorTypeaheadResult {
|
||||||
public function getWireFormat() {
|
public function getWireFormat() {
|
||||||
$data = array(
|
$data = array(
|
||||||
$this->name,
|
$this->name,
|
||||||
$this->uri,
|
$this->uri ? (string)$this->uri : null,
|
||||||
$this->phid,
|
$this->phid,
|
||||||
$this->priorityString,
|
$this->priorityString,
|
||||||
$this->displayName,
|
$this->displayName,
|
||||||
|
|
Loading…
Reference in a new issue