Page MenuHomePhorge

D25489.1734728998.diff
No OneTemporary

D25489.1734728998.diff

diff --git a/src/infrastructure/customfield/standard/PhabricatorStandardCustomFieldInt.php b/src/infrastructure/customfield/standard/PhabricatorStandardCustomFieldInt.php
--- a/src/infrastructure/customfield/standard/PhabricatorStandardCustomFieldInt.php
+++ b/src/infrastructure/customfield/standard/PhabricatorStandardCustomFieldInt.php
@@ -11,7 +11,7 @@
$indexes = array();
$value = $this->getFieldValue();
- if (strlen($value)) {
+ if (phutil_nonempty_scalar($value)) {
$indexes[] = $this->newNumericIndex((int)$value);
}
@@ -53,7 +53,7 @@
PhabricatorCursorPagedPolicyAwareQuery $query,
$value) {
- if (strlen($value)) {
+ if (phutil_nonempty_scalar($value)) {
$query->withApplicationSearchContainsConstraint(
$this->newNumericIndex(null),
$value);
@@ -84,7 +84,7 @@
foreach ($xactions as $xaction) {
$value = $xaction->getNewValue();
- if (strlen($value)) {
+ if (phutil_nonempty_scalar($value)) {
if (!preg_match('/^-?\d+/', $value)) {
$errors[] = new PhabricatorApplicationTransactionValidationError(
$type,
@@ -104,9 +104,9 @@
$old = $xaction->getOldValue();
$new = $xaction->getNewValue();
- if (!strlen($old) && strlen($new)) {
+ if (!phutil_nonempty_scalar($old) && phutil_nonempty_scalar($new)) {
return true;
- } else if (strlen($old) && !strlen($new)) {
+ } else if (phutil_nonempty_scalar($old) && !phutil_nonempty_scalar($new)) {
return true;
} else {
return ((int)$old !== (int)$new);

File Metadata

Mime Type
text/plain
Expires
Fri, Dec 20, 21:09 (16 h, 22 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1021060
Default Alt Text
D25489.1734728998.diff (1 KB)

Event Timeline