Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Change absolute to relatif path in css/js include
  • Loading branch information
Janus committed Jun 8, 2016
1 parent 1b5dd4d commit 128f698
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion static/st_login.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<title><?php echo $DynmapTitle; ?></title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="/css/css_login.php" />
<link rel="stylesheet" type="text/css" href="css/css_login.php" />
</head>
<body>
<div id="error" <?php if($displayError == false){ echo 'style="display: none;"';} ?>>Password or username was incorrect! Try again.</div>
Expand Down
4 changes: 2 additions & 2 deletions static/st_map.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="UTF-8">
<script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="/css/css_map.php" />
<link rel="stylesheet" type="text/css" href="css/css_map.php" />
</head>
<body>
<div id="main">
Expand Down Expand Up @@ -36,6 +36,6 @@
</form>
<noscript>Javascript is required for runinng this application!</noscript>
<script type="text/javascript">var syncinterval = <?php echo $syncinterval; ?>;</script>
<script src="/js/js_map.js"></script>
<script src="js/js_map.js"></script>
</body>
</html>

0 comments on commit 128f698

Please sign in to comment.