1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-31 15:24:31 +03:00

Fixed quoting db/table names in encoding migration.

Also fixed incorrect if statement in db config.
This commit is contained in:
Dan Brown
2017-07-02 17:34:32 +01:00
parent 005f0eb4fc
commit f101e4f010
2 changed files with 5 additions and 5 deletions

View File

@ -19,7 +19,7 @@ if (env('REDIS_SERVERS', false)) {
$mysql_host = env('DB_HOST', 'localhost');
$mysql_host_exploded = explode(':', $mysql_host);
$mysql_port = env('DB_PORT', 3306);
if (count($mysql_host_exploded) > 0) {
if (count($mysql_host_exploded) > 1) {
$mysql_host = $mysql_host_exploded[0];
$mysql_port = intval($mysql_host_exploded[1]);
}