Page MenuHomePhorge

D25221.1734776503.diff
No OneTemporary

D25221.1734776503.diff

diff --git a/src/applications/files/markup/PhabricatorEmbedFileRemarkupRule.php b/src/applications/files/markup/PhabricatorEmbedFileRemarkupRule.php
--- a/src/applications/files/markup/PhabricatorEmbedFileRemarkupRule.php
+++ b/src/applications/files/markup/PhabricatorEmbedFileRemarkupRule.php
@@ -197,7 +197,7 @@
$alt = $options['alt'];
}
- if (!strlen($alt)) {
+ if (!phutil_nonempty_string($alt)) {
$alt = $file->getAltText();
}
@@ -346,9 +346,11 @@
}
private function parseDimension($string) {
- $string = trim($string);
+ if (phutil_nonempty_string($string)) {
+ $string = trim($string);
+ }
- if (preg_match('/^(?:\d*\\.)?\d+%?$/', $string)) {
+ if ($string && preg_match('/^(?:\d*\\.)?\d+%?$/', $string)) {
return $string;
}

File Metadata

Mime Type
text/plain
Expires
Sat, Dec 21, 10:21 (18 h, 5 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1024531
Default Alt Text
D25221.1734776503.diff (812 B)

Event Timeline