do not set user in view

This commit is contained in:
Uwe Steinmann 2023-01-10 18:33:23 +01:00
parent 28f16a5da5
commit 7531afca4b

View File

@ -32,7 +32,7 @@ require_once("inc/inc.ClassAccessOperation.php");
//require_once("inc/inc.Authentication.php");
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=null));
if($view) {
$view($_GET);
exit;