Remove reference to non-existent company_id field in contacts table

This commit is contained in:
Marcus Hill 2023-05-01 14:01:23 +01:00
parent 8cf1bd8911
commit bf45c58ed1
1 changed files with 0 additions and 1 deletions

View File

@ -51,7 +51,6 @@ if ($_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST['login'])) {
$_SESSION['client_logged_in'] = true;
$_SESSION['client_id'] = intval($row['contact_client_id']);
$_SESSION['contact_id'] = intval($row['contact_id']);
$_SESSION['company_id'] = intval($row['company_id']);
$_SESSION['login_method'] = "local";
header("Location: index.php");