mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-20 01:58:36 +00:00
Fixed show_public on servers create
Fixed show_public on servers create
This commit is contained in:
parent
e84f404af8
commit
58aabe8fc1
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ class ServerController extends Controller
|
||||||
'bandwidth' => $request->bandwidth,
|
'bandwidth' => $request->bandwidth,
|
||||||
'cpu' => $request->cpu,
|
'cpu' => $request->cpu,
|
||||||
'was_promo' => $request->was_promo,
|
'was_promo' => $request->was_promo,
|
||||||
'show_public' => $request->show_public
|
'show_public' => (isset($request->show_public)) ? 1 : 0
|
||||||
]);
|
]);
|
||||||
|
|
||||||
if (!is_null($request->ip1)) {
|
if (!is_null($request->ip1)) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue