Skip to content

Commit 24d49be

Browse files
committed
Pesky spaces... fixes extra space on end of sftp password, closes pterodactyl#116
1 parent 520afb4 commit 24d49be

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
2525
* Team Fortress named 'Insurgency' in panel in database seeder. ([#96](https://github.com/Pterodactyl/Panel/issues/96), PR by [@MeltedLux](https://github.com/MeltedLux))
2626
* Server allocation listing display now showing the connection IP unless an alias was assigned.
2727
* Fixed bug where node allocation would appear to be successful but actual encounter an error. Made it cleared how to enter ports.
28+
* Fixes display where an extra space was added to the end of SFTP passwords when they were copied from the panel. [#116](https://github.com/Pterodactyl/Panel/issues/116), thanks [@OrangeJuiced](https://github.com/OrangeJuiced)
2829

2930
### Deprecated
3031
### Removed

resources/views/server/settings.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
@can('view-sftp-password', $server)
7575
<label class="control-label">Current Password:</label>
7676
<div>
77-
<input type="text" readonly="readonly" class="form-control" value="@if(!is_null($server->sftp_password)){{ Crypt::decrypt($server->sftp_password) }} @endif" />
77+
<input type="text" readonly="readonly" class="form-control" value="@if(!is_null($server->sftp_password)){{ Crypt::decrypt($server->sftp_password) }}@endif" />
7878
</div>
7979
@endcan
8080
</div>

0 commit comments

Comments
 (0)