mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-23 09:32:29 +01:00
Compare commits
4 Commits
b4fb160e8b
...
04c719b842
Author | SHA1 | Date | |
---|---|---|---|
|
04c719b842 | ||
|
90ae588721 | ||
|
955dd2796d | ||
|
2ae17719a8 |
10
CHANGELOG.md
10
CHANGELOG.md
@ -3,6 +3,16 @@ This file is a running track of new features and fixes to each version of the pa
|
||||
|
||||
This project follows [Semantic Versioning](http://semver.org) guidelines.
|
||||
|
||||
## v1.11.10
|
||||
|
||||
### BREAKING
|
||||
|
||||
* Minimum PHP verion is now 8.2 due to Laravel upgrade!
|
||||
|
||||
### Fixed
|
||||
|
||||
* Update Laravel to address [CVE-2024-52301](https://github.com/advisories/GHSA-gv7v-rgg6-548h)
|
||||
|
||||
## v1.11.9
|
||||
|
||||
### Fixed
|
||||
|
@ -28,7 +28,7 @@
|
||||
"guzzlehttp/guzzle": "~7.9.2",
|
||||
"hashids/hashids": "~5.0.2",
|
||||
"laracasts/utilities": "~3.2.3",
|
||||
"laravel/framework": "~11.28.1",
|
||||
"laravel/framework": "~11.31.0",
|
||||
"laravel/helpers": "~1.7.0",
|
||||
"laravel/sanctum": "~4.0.3",
|
||||
"laravel/tinker": "~2.10.0",
|
||||
|
541
composer.lock
generated
541
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@ -54,7 +54,7 @@
|
||||
<div>
|
||||
<select name="location_id" class="form-control">
|
||||
@foreach($locations as $location)
|
||||
<option value="{{ $location->id }}" {{ (old('location_id', $node->location_id) === $location->id) ? 'selected' : '' }}>{{ $location->long }} ({{ $location->short }})</option>
|
||||
<option value="{{ $location->id }}" {{ (((int) old('location_id', $node->location_id)) === $location->id) ? 'selected' : '' }}>{{ $location->long }} ({{ $location->short }})</option>
|
||||
@endforeach
|
||||
</select>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user