mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Display URI of HTTP profiler in DarkConsole
Summary: D2464 Test Plan: D2464 Reviewers: epriestley Reviewed By: epriestley CC: aran, Koolvin Differential Revision: https://secure.phabricator.com/D2465
This commit is contained in:
parent
d85425e654
commit
4626c40fe3
1 changed files with 4 additions and 0 deletions
|
@ -247,6 +247,10 @@ final class DarkConsoleServicesPlugin extends DarkConsolePlugin {
|
||||||
$info = $row['method'];
|
$info = $row['method'];
|
||||||
$info = phutil_escape_html($info);
|
$info = phutil_escape_html($info);
|
||||||
break;
|
break;
|
||||||
|
case 'http':
|
||||||
|
$info = $row['uri'];
|
||||||
|
$info = phutil_escape_html($info);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
$info = '-';
|
$info = '-';
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue