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

Conflicts:
	htdocs/comm/action/list.php
	htdocs/main.inc.php
This commit is contained in:
Laurent Destailleur 2019-12-03 15:03:10 +01:00
commit 7a1a932755
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ include_once DOL_DOCUMENT_ROOT.'/core/class/html.formactions.class.php';
require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
// Load translation files required by the page
$langs->loadLangs(array("users", "companies", "agenda", "commercial"));
$langs->loadLangs(array("users", "companies", "agenda", "commercial", "other"));
$action = GETPOST('action', 'alpha');
$contextpage = GETPOST('contextpage', 'aZ') ?GETPOST('contextpage', 'aZ') : 'actioncommlist'; // To manage different context of search

View File

@ -232,7 +232,7 @@ require_once 'master.inc.php';
register_shutdown_function('dol_shutdown');
// Load debugbar
if (!empty($conf->debugbar->enabled))
if (!empty($conf->debugbar->enabled) && ! GETPOST('dol_use_jmobile') && empty($_SESSION['dol_use_jmobile']))
{
global $debugbar;
include_once DOL_DOCUMENT_ROOT.'/debugbar/class/DebugBar.php';