Update req_user_info.php

This commit is contained in:
tripathyr 2021-11-08 18:35:23 +05:30 committed by GitHub
parent b18b7c07d1
commit beae179d72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,10 +3,10 @@ if (!isset($user_id)) {
$user_id = $_SESSION['user_id']; $user_id = $_SESSION['user_id'];
} }
if (!isset($user_email)) { if (!isset($user_email)) {
$user_email = $_SESSION['email']; $user_email = $_SESSION['flo_id'];
} }
if (!isset($log_fullName)) { if (!isset($log_fullName)) {
$log_fullName = $_SESSION['full_name']; $log_fullName = $_SESSION['flo_id'];
} }
if (($user_email == null) && ($user_logged_in == true)) { if (($user_email == null) && ($user_logged_in == true)) {
@ -47,4 +47,4 @@ if (($user_email == null) && ($user_logged_in == true)) {
</div> </div>
</div> </div>
<?php } <?php }