forked from Wavyzz/dolibarr
Merge branch 'develop' of git@github.com:Dolibarr/dolibarr.git into develop
This commit is contained in:
@@ -746,16 +746,16 @@ if (!defined('NOLOGIN')) {
|
||||
// It is not already authenticated and it requests the login / password
|
||||
include_once DOL_DOCUMENT_ROOT.'/core/lib/security2.lib.php';
|
||||
|
||||
$dol_dst_observed = GETPOST("dst_observed", 'int', 3);
|
||||
$dol_dst_first = GETPOST("dst_first", 'int', 3);
|
||||
$dol_dst_second = GETPOST("dst_second", 'int', 3);
|
||||
$dol_screenwidth = GETPOST("screenwidth", 'int', 3);
|
||||
$dol_screenheight = GETPOST("screenheight", 'int', 3);
|
||||
$dol_hide_topmenu = GETPOST('dol_hide_topmenu', 'int', 3);
|
||||
$dol_hide_leftmenu = GETPOST('dol_hide_leftmenu', 'int', 3);
|
||||
$dol_optimize_smallscreen = GETPOST('dol_optimize_smallscreen', 'int', 3);
|
||||
$dol_no_mouse_hover = GETPOST('dol_no_mouse_hover', 'int', 3);
|
||||
$dol_use_jmobile = GETPOST('dol_use_jmobile', 'int', 3); // 0=default, 1=to say we use app from a webview app, 2=to say we use app from a webview app and keep ajax
|
||||
$dol_dst_observed = GETPOSTINT("dst_observed", 3);
|
||||
$dol_dst_first = GETPOSTINT("dst_first", 3);
|
||||
$dol_dst_second = GETPOSTINT("dst_second", 3);
|
||||
$dol_screenwidth = GETPOSTINT("screenwidth", 3);
|
||||
$dol_screenheight = GETPOSTINT("screenheight", 3);
|
||||
$dol_hide_topmenu = GETPOSTINT('dol_hide_topmenu', 3);
|
||||
$dol_hide_leftmenu = GETPOSTINT('dol_hide_leftmenu', 3);
|
||||
$dol_optimize_smallscreen = GETPOSTINT('dol_optimize_smallscreen', 3);
|
||||
$dol_no_mouse_hover = GETPOSTINT('dol_no_mouse_hover', 3);
|
||||
$dol_use_jmobile = GETPOSTINT('dol_use_jmobile', 3); // 0=default, 1=to say we use app from a webview app, 2=to say we use app from a webview app and keep ajax
|
||||
//dol_syslog("POST key=".join(array_keys($_POST),',').' value='.join($_POST,','));
|
||||
|
||||
// If in demo mode, we check we go to home page through the public/demo/index.php page
|
||||
|
||||
Reference in New Issue
Block a user