From d48ad48e0e3551032615a7bf41f8bc0bd7dd5134 Mon Sep 17 00:00:00 2001 From: joyqi Date: Tue, 10 Dec 2013 21:45:22 +0800 Subject: [PATCH] fixed #115 --- install.php | 1 + 1 file changed, 1 insertion(+) diff --git a/install.php b/install.php index c159efb2..5baa086d 100644 --- a/install.php +++ b/install.php @@ -269,6 +269,7 @@ list($prefixVersion, $suffixVersion) = explode('/', $currentVersion); /** ć…šć±€ć˜é‡ */ $installDb->query($installDb->insert('table.options')->rows(array('name' => 'theme', 'user' => 0, 'value' => 'default'))); + $installDb->query($installDb->insert('table.options')->rows(array('name' => 'theme:default', 'user' => 0, 'value' => 'a:2:{s:7:"logoUrl";N;s:12:"sidebarBlock";a:5:{i:0;s:15:"ShowRecentPosts";i:1;s:18:"ShowRecentComments";i:2;s:12:"ShowCategory";i:3;s:11:"ShowArchive";i:4;s:9:"ShowOther";}}'))); $installDb->query($installDb->insert('table.options')->rows(array('name' => 'timezone', 'user' => 0, 'value' => _t('28800')))); $installDb->query($installDb->insert('table.options')->rows(array('name' => 'charset', 'user' => 0, 'value' => 'UTF-8'))); $installDb->query($installDb->insert('table.options')->rows(array('name' => 'contentType', 'user' => 0, 'value' => 'text/html')));