Skip to content

Commit 91ad9b3

Browse files
committed
fix server name linking on front-end, closes pterodactyl#79
1 parent 40f7ae0 commit 91ad9b3

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,24 @@
22
This file is a running track of new features and fixes to each version of the panel released starting with `v0.4.0`.
33

44
## v0.4.0 (release scheduled ~ Mid September)
5+
Requires `Daemon@0.2.0`
56

67
### New Features
78
* Task scheduler supporting customized CRON syntax or dropdown selected options. (currently only support command and power options)
89
* Adds support for changing per-server database passwords from the panel.
910
* Allows for use of IP rather than a FQDN if the node is not using SSL
1011
* Adds support for IP Aliases on display pages for users. This makes it possible to use GRE tunnels and still show the user what IP they should be connecting to.
1112
* Adds support for suspending servers
12-
* Adds support for viewing SFTP password within the panel (#74, thanks @ET-Bent)
13+
* Adds support for viewing SFTP password within the panel ([#74](https://github.com/Pterodactyl/Panel/issues/74), thanks [@ET-Bent](https://github.com/ET-Bent))
1314
* Improved API with support for server suspension and build modification.
1415

1516
### Bug Fixes
16-
* Fixes password auto-generation on 'Manage Server' page. (#67, thanks @ET-Bent)
17+
* Fixes password auto-generation on 'Manage Server' page. ([#67](https://github.com/Pterodactyl/Panel/issues/67), thanks [@ET-Bent](https://github.com/ET-Bent))
1718
* Fixes some overly verbose user output when an error occurs
18-
* [Security Patch] Fixes listing of server variables for server. Previously a bug made it possible to view settings for all servers, even if the user didn't own that server. (#69)
19+
* [Security Patch] Fixes listing of server variables for server. Previously a bug made it possible to view settings for all servers, even if the user didn't own that server. ([#69](https://github.com/Pterodactyl/Panel/issues/69))
1920
* Prevent calling daemon until database call has been confirmed when changing default connection.
2021
* Fixes a few display issues relating to subusers and database management.
22+
* Fixes the server name in the header not linking to the server correctly. ([#79](https://github.com/Pterodactyl/Panel/issues/79), thanks [@xX1bumblebee1Xx](https://github.com/xX1bumblebee1Xx))
2123

2224
### General
2325
* Update Laravel to version `5.3` and update dependencies.

resources/views/layouts/master.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@
172172
@section('server-name')
173173
@if (isset($server->name) && isset($node->name))
174174
<ul class="nav navbar-nav">
175-
<li class="active" id="{{ $server->name }}"><a href="/server/{{ $server->id }}/index"><i id="applyUpdate" class="fa fa-circle-o-notch fa-spinner fa-spin spin-light"></i> {{ $server->name }}</a></li>
175+
<li class="active" id="{{ $server->name }}"><a href="/server/{{ $server->uuidShort }}/index"><i id="applyUpdate" class="fa fa-circle-o-notch fa-spinner fa-spin spin-light"></i> {{ $server->name }}</a></li>
176176
</ul>
177177
@endif
178178
@show

0 commit comments

Comments
 (0)