Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2694280
D25222.1734776656.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
730 B
Referenced Files
None
Subscribers
None
D25222.1734776656.diff
View Options
diff --git a/src/applications/maniphest/xaction/ManiphestTaskPointsTransaction.php b/src/applications/maniphest/xaction/ManiphestTaskPointsTransaction.php
--- a/src/applications/maniphest/xaction/ManiphestTaskPointsTransaction.php
+++ b/src/applications/maniphest/xaction/ManiphestTaskPointsTransaction.php
@@ -98,7 +98,12 @@
}
private function getValueForPoints($value) {
- if (!strlen($value)) {
+
+ // The Point can be various types also thanks to Conduit API
+ // like integers, floats, null, and strings of course.
+ // Everything meaningful must be printable as a string.
+ $is_empty = phutil_string_cast($value) === '';
+ if ($is_empty) {
$value = null;
}
if ($value !== null) {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Dec 21, 10:24 (17 h, 39 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1024533
Default Alt Text
D25222.1734776656.diff (730 B)
Attached To
Mode
D25222: Fix PHP 8.1 "strlen(null)" exception setting Story Points on a Task
Attached
Detach File
Event Timeline
Log In to Comment