Page MenuHomePhorge

D25221.1734752330.diff
No OneTemporary

D25221.1734752330.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,10 +346,11 @@
}
private function parseDimension($string) {
- $string = trim($string);
-
- if (preg_match('/^(?:\d*\\.)?\d+%?$/', $string)) {
- return $string;
+ if ($string !== null) {
+ $string = trim($string);
+ if (preg_match('/^(?:\d*\\.)?\d+%?$/', $string)) {
+ return $string;
+ }
}
return null;

File Metadata

Mime Type
text/plain
Expires
Sat, Dec 21, 03:38 (17 h, 36 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1022442
Default Alt Text
D25221.1734752330.diff (834 B)

Event Timeline