Merge branch 'develop' of git@github.com:Dolibarr/dolibarr.git into develop

This commit is contained in:
Laurent Destailleur 2019-06-20 03:54:20 +02:00
commit 5d4d02f3b2
2 changed files with 14 additions and 0 deletions

View File

@ -2046,6 +2046,16 @@ function left_menu($menu_array_before, $helppagename = '', $notused = '', $menu_
$bugbaseurl.= urlencode("- **PHP**: " . php_sapi_name() . ' ' . phpversion() . "\n");
$bugbaseurl.= urlencode("- **Database**: " . $db::LABEL . ' ' . $db->getVersion() . "\n");
$bugbaseurl.= urlencode("- **URL**: " . $_SERVER["REQUEST_URI"] . "\n");
// Execute hook printBugtrackInfo
$parameters=array('bugbaseurl'=>$bugbaseurl);
$reshook=$hookmanager->executeHooks('printBugtrackInfo', $parameters); // Note that $action and $object may have been modified by some hooks
if (empty($reshook))
{
$bugbaseurl.=$hookmanager->resPrint;
}
else $bugbaseurl=$hookmanager->resPrint;
$bugbaseurl.= urlencode("\n");
$bugbaseurl.= urlencode("## Report\n");
print '<div id="blockvmenuhelpbugreport" class="blockvmenuhelp">';

View File

@ -95,6 +95,10 @@ input.button.massactionconfirmed {
margin: 4px;
}
input:invalid, select:invalid {
border-color: #ea1212;
}
/* Focus definitions must be after standard definition */
textarea:focus {
/* v6 box-shadow: 0 0 4px #8091BF; */