[-] BO : fix bug #PSCFV-2251 - http_build_query must fix arg_separator

This commit is contained in:
tDidierjean
2012-05-09 13:39:19 +00:00
parent b15004b28f
commit f7e72c61dd
44 changed files with 47 additions and 47 deletions

View File

@@ -285,7 +285,7 @@ abstract class ModuleGraphCore extends Module
$url_params['module'] = Tools::getValue('module');
$url_params['id_employee'] = $id_employee;
$url_params['id_lang'] = $id_lang;
$drawer = 'drawer.php?'.http_build_query(array_map('Tools::safeOutput', $url_params));
$drawer = 'drawer.php?'.http_build_query(array_map('Tools::safeOutput', $url_params), '', '&');
require_once(dirname(__FILE__).'/../modules/'.$render.'/'.$render.'.php');
return call_user_func(array($render, 'hookGraphEngine'), $params, $drawer);