Skip to content

Commit 327a324

Browse files
authored
Merge pull request pterodactyl#1443 from zKoz210/develop
Fixed skip_scripts in creating and startup the server
2 parents 404da5a + e3ebef9 commit 327a324

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

resources/themes/pterodactyl/admin/servers/new.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@
206206
</div>
207207
<div class="form-group col-xs-12">
208208
<div class="checkbox checkbox-primary no-margin-bottom">
209-
<input id="pSkipScripting" name="skip_scripting" type="checkbox" value="1" />
209+
<input id="pSkipScripting" name="skip_scripts" type="checkbox" value="1" />
210210
<label for="pSkipScripting" class="strong">Skip Egg Install Script</label>
211211
</div>
212212
<p class="small text-muted no-margin">If the selected Egg has an install script attached to it, the script will run during install after the pack is installed. If you would like to skip this step, check this box.</p>

resources/themes/pterodactyl/admin/servers/view/startup.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
</div>
103103
<div class="form-group col-xs-12">
104104
<div class="checkbox checkbox-primary no-margin-bottom">
105-
<input id="pSkipScripting" name="skip_scripting" type="checkbox" value="1" @if($server->skip_scripts) checked @endif />
105+
<input id="pSkipScripting" name="skip_scripts" type="checkbox" value="1" @if($server->skip_scripts) checked @endif />
106106
<label for="pSkipScripting" class="strong">Skip Egg Install Script</label>
107107
</div>
108108
<p class="small text-muted no-margin">If the selected Egg has an install script attached to it, the script will run during install after the pack is installed. If you would like to skip this step, check this box.</p>

0 commit comments

Comments
 (0)