1
0
mirror of https://github.com/flarum/core.git synced 2025-07-17 14:51:19 +02:00

Make MySQL port field optional

Last fix for pull request #989.
This commit is contained in:
Franz Liedke
2017-02-03 17:56:02 +01:00
parent 2225fdec72
commit a3cbec25db

View File

@@ -135,7 +135,7 @@ class InstallCommand extends AbstractCommand
'database' => 'required|string', 'database' => 'required|string',
'username' => 'required|string', 'username' => 'required|string',
'prefix' => 'alpha_dash|max:10', 'prefix' => 'alpha_dash|max:10',
'port' => 'required|integer|min:1|max:65535', 'port' => 'integer|min:1|max:65535',
] ]
); );