Skip to content
Snippets Groups Projects
Commit f7d26afa authored by Alex Barth's avatar Alex Barth
Browse files

#873240 thsutton: Use isset() to avoid notices.

parent 30c5623d
No related branches found
No related tags found
No related merge requests found
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
Feeds 6.x 1.0 XXXXXXXXXXXXXXXXXX Feeds 6.x 1.0 XXXXXXXXXXXXXXXXXX
-------------------------------- --------------------------------
- #873240 thsutton: Use isset() to avoid notices.
- #878528 Sutharsan: Don't show file in UI if file does not exist. - #878528 Sutharsan: Don't show file in UI if file does not exist.
- #901798 alex_b: Fix time off in SitemapParser. - #901798 alex_b: Fix time off in SitemapParser.
- #885724 eliotttf: Avoid array_flip() on non scalars. - #885724 eliotttf: Avoid array_flip() on non scalars.
......
...@@ -169,7 +169,7 @@ function theme_feeds_upload($element) { ...@@ -169,7 +169,7 @@ function theme_feeds_upload($element) {
$output .= '<div class="file-size">'; $output .= '<div class="file-size">';
$output .= format_size($info['size']); $output .= format_size($info['size']);
$output .= '</div>'; $output .= '</div>';
if ($info['mime']) { if (isset($info['mime'])) {
$output .= '<div class="file-mime">'; $output .= '<div class="file-mime">';
$output .= check_plain($info['mime']); $output .= check_plain($info['mime']);
$output .= '</div>'; $output .= '</div>';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment