Skip to content

Commit 295d1b1

Browse files
committed
https
1 parent 0579af1 commit 295d1b1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

view.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<meta charset="utf-8">
3737
<title>Minecraft Query PHP Class</title>
3838

39-
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
39+
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
4040
<style type="text/css">
4141
.jumbotron {
4242
margin-top: 30px;
@@ -59,7 +59,7 @@
5959
<p>This class was created to query Minecraft servers. It works starting from Minecraft 1.0.</p>
6060

6161
<p>
62-
<a class="btn btn-large btn-primary" href="http://xpaw.me">Made by xPaw</a>
62+
<a class="btn btn-large btn-primary" href="https://xpaw.me">Made by xPaw</a>
6363
<a class="btn btn-large btn-primary" href="https://github.com/xPaw/PHP-Minecraft-Query">View on GitHub</a>
6464
<a class="btn btn-large btn-danger" href="https://github.com/xPaw/PHP-Minecraft-Query/blob/master/LICENSE">MIT license</a>
6565
</p>
@@ -68,7 +68,7 @@
6868
<?php if( isset( $Exception ) ): ?>
6969
<div class="panel panel-primary">
7070
<div class="panel-heading"><?php echo htmlspecialchars( $Exception->getMessage( ) ); ?></div>
71-
<p><?php echo nl2br( $e->getTraceAsString(), false ); ?></p>
71+
<div class="panel-body"><?php echo nl2br( $e->getTraceAsString(), false ); ?></div>
7272
</div>
7373
<?php else: ?>
7474
<div class="row">

view_serverping.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<meta charset="utf-8">
6262
<title>Minecraft Ping PHP Class</title>
6363

64-
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
64+
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
6565
<style type="text/css">
6666
.jumbotron {
6767
margin-top: 30px;
@@ -84,7 +84,7 @@
8484
<p>This class was created to query Minecraft servers. It works starting from Minecraft 1.0.</p>
8585

8686
<p>
87-
<a class="btn btn-large btn-primary" href="http://xpaw.me">Made by xPaw</a>
87+
<a class="btn btn-large btn-primary" href="https://xpaw.me">Made by xPaw</a>
8888
<a class="btn btn-large btn-primary" href="https://github.com/xPaw/PHP-Minecraft-Query">View on GitHub</a>
8989
<a class="btn btn-large btn-danger" href="https://github.com/xPaw/PHP-Minecraft-Query/blob/master/LICENSE">MIT license</a>
9090
</p>
@@ -93,7 +93,7 @@
9393
<?php if( isset( $Exception ) ): ?>
9494
<div class="panel panel-primary">
9595
<div class="panel-heading"><?php echo htmlspecialchars( $Exception->getMessage( ) ); ?></div>
96-
<p><?php echo nl2br( $e->getTraceAsString(), false ); ?></p>
96+
<div class="panel-body"><?php echo nl2br( $e->getTraceAsString(), false ); ?></div>
9797
</div>
9898
<?php else: ?>
9999
<div class="row">

0 commit comments

Comments
 (0)