Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F18645224
D19236.id46059.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D19236.id46059.diff
View Options
diff --git a/src/applications/console/plugin/DarkConsoleServicesPlugin.php b/src/applications/console/plugin/DarkConsoleServicesPlugin.php
--- a/src/applications/console/plugin/DarkConsoleServicesPlugin.php
+++ b/src/applications/console/plugin/DarkConsoleServicesPlugin.php
@@ -279,7 +279,7 @@
$analysis,
);
- if ($row['trace']) {
+ if (isset($row['trace'])) {
$rows[] = array(
null,
null,
diff --git a/src/applications/search/fulltextstorage/PhabricatorFerretFulltextStorageEngine.php b/src/applications/search/fulltextstorage/PhabricatorFerretFulltextStorageEngine.php
--- a/src/applications/search/fulltextstorage/PhabricatorFerretFulltextStorageEngine.php
+++ b/src/applications/search/fulltextstorage/PhabricatorFerretFulltextStorageEngine.php
@@ -104,7 +104,7 @@
// Reorder the results so that the highest-ranking results come first,
// no matter which object types they belong to.
- $metadata = msort($metadata, 'getRelevanceSortVector');
+ $metadata = msortv($metadata, 'getRelevanceSortVector');
$list = array_select_keys($list, array_keys($metadata)) + $list;
$result_slice = array_slice($list, $offset, $limit, true);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sep 20 2025, 7:06 AM (29 w, 4 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
9658544
Default Alt Text
D19236.id46059.diff (1 KB)
Attached To
Mode
D19236: Fix some minor errors (DarkConsole warning, unstable Ferret sort)
Attached
Detach File
Event Timeline
Log In to Comment