From 3c642a3a79b165e305eedfdfba4ccaf77b4b1493 Mon Sep 17 00:00:00 2001
From: Karson <karsonzhang@163.com>
Date: Mon, 8 May 2017 13:06:53 +0800
Subject: [PATCH] 修复端口在非3306时php think install的BUG

---
 application/admin/command/Install.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/application/admin/command/Install.php b/application/admin/command/Install.php
index 391b686..22e37fb 100644
--- a/application/admin/command/Install.php
+++ b/application/admin/command/Install.php
@@ -40,7 +40,7 @@ class Install extends Command
 
         // 先尝试能否自动创建数据
         $config = Config::get('database');
-        $pdo = new PDO("{$config['type']}:host={$config['hostname']}", $config['username'], $config['password']);
+        $pdo = new PDO("{$config['type']}:host={$config['hostname']}" . ($config['hostport'] ? ";port={$config['hostport']}" : ''), $config['username'], $config['password']);
         $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
         $pdo->query("CREATE DATABASE IF NOT EXISTS `{$config['database']}` CHARACTER SET utf8 COLLATE utf8_general_ci;");
 
--
libgit2 0.24.0