From ab0e0a099fc9111ca0e219673f6a37040f5fb89e Mon Sep 17 00:00:00 2001 From: chicpro Date: Fri, 28 Jun 2013 15:07:35 +0900 Subject: [PATCH] =?UTF-8?q?=EC=87=BC=ED=95=91=EB=AA=B0=20=EC=84=A4?= =?UTF-8?q?=EC=B9=98=20=EC=B2=B4=ED=81=AC=ED=96=88=EC=9D=84=20=EB=95=8C?= =?UTF-8?q?=EB=A7=8C=20=EB=A1=9C=EA=B3=A0=20=EC=9D=B4=EB=AF=B8=EC=A7=80?= =?UTF-8?q?=EB=93=B1=20=EB=B3=B5=EC=82=AC=ED=95=98=EB=8F=84=EB=A1=9D=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install/install_db.php | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/install/install_db.php b/install/install_db.php index 34195e733..fe15d1dca 100644 --- a/install/install_db.php +++ b/install/install_db.php @@ -516,13 +516,15 @@ EOD; fwrite($f, $str); fclose($f); -@copy('./logo_img', $data_path.'/common/logo_img'); -@copy('./logo_img', $data_path.'/common/mobile_logo_img'); -@copy('./main_img', $data_path.'/common/main_img'); +if($shop_install) { + @copy('./logo_img', $data_path.'/common/logo_img'); + @copy('./logo_img', $data_path.'/common/mobile_logo_img'); + @copy('./main_img', $data_path.'/common/main_img'); -@copy('./company_h', $data_path.'/content/company_h'); -@copy('./privacy_h', $data_path.'/content/privacy_h'); -@copy('./provision_h', $data_path.'/content/provision_h'); + @copy('./company_h', $data_path.'/content/company_h'); + @copy('./privacy_h', $data_path.'/content/privacy_h'); + @copy('./provision_h', $data_path.'/content/provision_h'); +} //------------------------------------------------------------------------------------------------- ?>