Hello
I have this error
warning: trying to access array offset on value of type bool in sql.php on line 195
it appears between all pages while I am navigating from one page to another, this error appears and disappears immediately, but it appears and remains present when viewing sales reports page.
/*--------------------------------------------------------------*/
/* Function for checking which user level has access to the page
/*--------------------------------------------------------------*/
function page_require_level($require_level){
global $session;
$current_user = current_user();
$login_level = find_by_groupLevel($current_user['user_level']);
//if user not login
if (!$session->isUserLoggedIn(true)):
$session->msg('d','Please Sign in');
redirect('index.php', false);
//if Group status Deactive
elseif($login_level['group_status'] === '0'): //Line 195
$session->msg('d','User Banned');
redirect('home.php',false);
//checking logged in User level and Require level is Less than or equal to
elseif($current_user['user_level'] <= (int)$require_level):
return true;
else:
$session->msg("d", "Error");
redirect('home.php', false);
endif;
}