File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
app/code/Magento/AdminNotification/view/adminhtml/templates/system/messages
setup/src/Magento/Setup/Module/I18n Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 9
9
?>
10
10
<?php /** @var $block \Magento\AdminNotification\Block\System\Messages\UnreadMessagePopup */ ?>
11
11
12
- <div id="system_messages_list" title="<?php echo $ block ->escapeHtml ($ block ->getPopupTitle ()); ?> ">
12
+ <div style="display:none" id="system_messages_list" title="<?php echo $ block ->escapeHtml ($ block ->getPopupTitle ()); ?> ">
13
13
<ul class="message-system-list">
14
14
<?php foreach ($ block ->getUnreadMessages () as $ message ): ?>
15
15
<li class="message message-warning <?php /* @escapeNotVerified */ echo $ block ->getItemClass ($ message );?> ">
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ protected function _getIterator($path, $fileMask = false)
42
42
try {
43
43
$ directoryIterator = new \RecursiveDirectoryIterator (
44
44
$ path ,
45
- \FilesystemIterator::SKIP_DOTS | \FilesystemIterator::UNIX_PATHS
45
+ \FilesystemIterator::SKIP_DOTS | \FilesystemIterator::UNIX_PATHS | \FilesystemIterator:: FOLLOW_SYMLINKS
46
46
);
47
47
$ iterator = new \RecursiveIteratorIterator ($ directoryIterator );
48
48
} catch (\UnexpectedValueException $ valueException ) {
You can’t perform that action at this time.
0 commit comments