0
0

Corrected management panel page title

This commit is contained in:
Bryan 2019-05-29 19:05:33 +02:00
parent b9b4150bd1
commit 94ea3a0168
No known key found for this signature in database
GPG Key ID: 6CB4C49B61AD50EF

View File

@ -35,8 +35,8 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>BJPHoster URL Shortener | Control Panel</title> <title>Management Panel | <?=$GLOBALS['config']['website_name']?></title>
<link href="<?=substr($_SERVER['SCRIPT_NAME'],0,-10)?>/favicon.ico" rel="icon" type="image/x-icon"> <link href="<?=$GLOBALS['config']['installation_path']?>/favicon.ico" rel="icon" type="image/x-icon">
</head> </head>
<body> <body>
<button onclick="logout()">Logout</button> <button onclick="logout()">Logout</button>
@ -55,8 +55,8 @@
<input type="text" id="form-url" placeholder="URL:"> <input type="text" id="form-url" placeholder="URL:">
<button onclick="urlinsert()">Insert new URL</button><br> <button onclick="urlinsert()">Insert new URL</button><br>
<div id="responsetext"></div> <div id="responsetext"></div>
<script src="<?=substr($_SERVER['SCRIPT_NAME'],0,-10)?>/lib/js/insertnew.js"></script> <script src="<?=$GLOBALS['config']['installation_path']?>/lib/js/insertnew.js"></script>
<script>var script_name = "<?=substr($_SERVER['SCRIPT_NAME'],0,-10)?>";</script> <script>var script_name = "<?=$GLOBALS['config']['installation_path']?>";</script>
</body> </body>
</html> </html>
<?php <?php