Changeset 3953:95aa4901300f for plugins/simpleMenu
- Timestamp:
- 12/19/18 15:04:27 (7 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/simpleMenu/_public.php
r3951 r3953 127 127 if (($description == 'title' || $description == 'both') && $targetBlank) { 128 128 $title = html::escapeHTML(__($m['descr'])) . ' (' . 129 __(' the link will open anew window') . ')';129 __('new window') . ')'; 130 130 } elseif ($description == 'title' || $description == 'both') { 131 131 $title = html::escapeHTML(__($m['descr'])); … … 137 137 138 138 if (empty($title) && $targetBlank) { 139 $title = __(' the link will open anew window');139 $title = __('new window'); 140 140 } 141 141 if ($active && !$targetBlank) { … … 164 164 '">' . 165 165 '<a href="' . $href . '"' . 166 (!empty($item['title']) ? ' title="'. $label . " - ". $item['title'] . '"' : '') .166 (!empty($item['title']) ? ' title="'. $label . ' - ' . $item['title'] . '"' : '') . 167 167 (($targetBlank) ? ' target="_blank" rel="noopener noreferrer"' : '') . '>' . 168 168 '<span class="simple-menu-label">' . $item['label'] . '</span>' .
Note: See TracChangeset
for help on using the changeset viewer.