mirror of https://github.com/itflow-org/itflow
Fix undefined error for company name
This commit is contained in:
parent
a966bf0282
commit
7f5e63e518
|
|
@ -12,7 +12,7 @@ header("X-Frame-Options: DENY"); // Legacy
|
|||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title><?php echo nullable_htmlentities($company_name); ?> | Client Portal</title>
|
||||
<title><?php echo nullable_htmlentities($session_company_name); ?> | Client Portal</title>
|
||||
|
||||
<!-- Tell the browser to be responsive to screen width -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
|
@ -32,7 +32,7 @@ header("X-Frame-Options: DENY"); // Legacy
|
|||
|
||||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="index.php"><?php echo nullable_htmlentities($company_name); ?></a>
|
||||
<a class="navbar-brand" href="index.php"><?php echo nullable_htmlentities($session_company_name); ?></a>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
|
|
|||
Loading…
Reference in New Issue