Pesky spaces... fixes extra space on end of sftp password, closes #116

This commit is contained in:
Dane Everitt 2016-10-04 22:32:36 -04:00
parent 520afb449c
commit 24d49be150
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
2 changed files with 2 additions and 1 deletions

View file

@ -74,7 +74,7 @@
@can('view-sftp-password', $server)
<label class="control-label">Current Password:</label>
<div>
<input type="text" readonly="readonly" class="form-control" value="@if(!is_null($server->sftp_password)){{ Crypt::decrypt($server->sftp_password) }} @endif" />
<input type="text" readonly="readonly" class="form-control" value="@if(!is_null($server->sftp_password)){{ Crypt::decrypt($server->sftp_password) }}@endif" />
</div>
@endcan
</div>