diff --git a/htdocs/admin/modules.php b/htdocs/admin/modules.php index 747a3cd41c332..ee17e6478630d 100644 --- a/htdocs/admin/modules.php +++ b/htdocs/admin/modules.php @@ -740,11 +740,13 @@ { if (preg_match('/^([^@]+)@([^@]+)$/i',$urlpage,$regs)) { - print ''.img_picto($langs->trans("Setup"),"setup",'style="padding-right: 6px"').''; + $urltouse=dol_buildpath('/'.$regs[2].'/admin/'.$regs[1],1); + print ''.img_picto($langs->trans("Setup"),"setup",'style="padding-right: 6px"').''; } else { - print ''.img_picto($langs->trans("Setup"),"setup",'style="padding-right: 6px"').''; + $urltouse=$urlpage; + print ''.img_picto($langs->trans("Setup"),"setup",'style="padding-right: 6px"').''; } } } diff --git a/htdocs/core/modules/modBlockedLog.class.php b/htdocs/core/modules/modBlockedLog.class.php index 59fa600f89493..eece7323c6848 100644 --- a/htdocs/core/modules/modBlockedLog.class.php +++ b/htdocs/core/modules/modBlockedLog.class.php @@ -63,7 +63,7 @@ function __construct($db) // Config pages //------------- - $this->config_page_url = array('blockedlog.php@blockedlog'); + $this->config_page_url = array('blockedlog.php?withtab=1@blockedlog'); // Dependancies //------------- diff --git a/htdocs/theme/eldy/style.css.php b/htdocs/theme/eldy/style.css.php index a39aff863d2cd..c275927dabab1 100644 --- a/htdocs/theme/eldy/style.css.php +++ b/htdocs/theme/eldy/style.css.php @@ -4574,12 +4574,16 @@ /* ============================================================================== */ -/* Mardown rendering */ +/* Markdown rendering */ /* ============================================================================== */ .imgmd { width: 90%; } +.moduledesclong h1 { + padding-top: 10px; + padding-bottom: 20px; +} /* ============================================================================== */ diff --git a/htdocs/theme/md/style.css.php b/htdocs/theme/md/style.css.php index 8d16428059197..a1cc57896632a 100644 --- a/htdocs/theme/md/style.css.php +++ b/htdocs/theme/md/style.css.php @@ -4557,12 +4557,16 @@ /* ============================================================================== */ -/* Mardown rendering */ +/* Markdown rendering */ /* ============================================================================== */ .imgmd { width: 90%; } +.moduledesclong h1 { + padding-top: 10px; + padding-bottom: 20px; +} /* ============================================================================== */