Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15199768
D20488.id48994.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
632 B
Referenced Files
None
Subscribers
None
D20488.id48994.diff
View Options
diff --git a/src/applications/fact/chart/PhabricatorHigherOrderChartFunction.php b/src/applications/fact/chart/PhabricatorHigherOrderChartFunction.php
--- a/src/applications/fact/chart/PhabricatorHigherOrderChartFunction.php
+++ b/src/applications/fact/chart/PhabricatorHigherOrderChartFunction.php
@@ -10,8 +10,12 @@
$domain = $function->getDomain();
if ($domain !== null) {
list($min, $max) = $domain;
- $minv[] = $min;
- $maxv[] = $max;
+ if ($min !== null) {
+ $minv[] = $min;
+ }
+ if ($max !== null) {
+ $maxv[] = $max;
+ }
}
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Feb 24, 10:20 AM (11 h, 57 m)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7186450
Default Alt Text
D20488.id48994.diff (632 B)
Attached To
Mode
D20488: Fix handling of "null" domain values in Charts
Attached
Detach File
Event Timeline
Log In to Comment