mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-07-15 08:58:10 +00:00
fix 'Add to clipboard' menu item in bootstrap theme
This commit is contained in:
parent
34697b62bd
commit
2b3d127808
|
@ -8,6 +8,7 @@
|
||||||
- fix creating preview image of file in drop folder if it contains
|
- fix creating preview image of file in drop folder if it contains
|
||||||
special chars
|
special chars
|
||||||
- show fileѕ and folders in dropfolder dir recursively
|
- show fileѕ and folders in dropfolder dir recursively
|
||||||
|
- fix 'Add to clipboard' menu item in bootstrap theme
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
Changes in version 5.1.32
|
Changes in version 5.1.32
|
||||||
|
|
|
@ -600,7 +600,7 @@ background-image: linear-gradient(to bottom, #882222, #111111);;
|
||||||
if(!empty($submenuitem['divider'])) {
|
if(!empty($submenuitem['divider'])) {
|
||||||
$content .= " <li class=\"divider\"></li>\n";
|
$content .= " <li class=\"divider\"></li>\n";
|
||||||
} else {
|
} else {
|
||||||
$content .= "<li><a".(isset($menuitem['link']) ? " href=\"".$menuitem['link']."\"" : "").(isset($menuitem['target']) ? ' target="'.$menuitem['target'].'"' : '');
|
$content .= "<li><a".(isset($menuitem['class']) ? " class=\"".$menuitem['class']."\"" : "").(isset($menuitem['link']) ? " href=\"".$menuitem['link']."\"" : "").(isset($menuitem['target']) ? ' target="'.$menuitem['target'].'"' : '');
|
||||||
if(!empty($menuitem['attributes']))
|
if(!empty($menuitem['attributes']))
|
||||||
foreach($menuitem['attributes'] as $attr)
|
foreach($menuitem['attributes'] as $attr)
|
||||||
$content .= ' '.$attr[0].'="'.$attr[1].'"';
|
$content .= ' '.$attr[0].'="'.$attr[1].'"';
|
||||||
|
|
Loading…
Reference in New Issue
Block a user