From 71b6b68affda2ddf9e185a42ad9fd12ecaacacaf Mon Sep 17 00:00:00 2001 From: zero Date: Thu, 14 Feb 2008 08:04:00 +0000 Subject: [PATCH] =?UTF-8?q?#368=20=EC=98=81=EB=AC=B8=20=EC=98=A4=ED=83=80?= =?UTF-8?q?=20=EB=B0=8F=201970=EB=85=84=20=EC=9D=B4=EC=A0=84=EC=9D=98=20?= =?UTF-8?q?=EC=9B=94=20=EC=98=81=EB=AC=B8=20=ED=91=9C=EA=B8=B0=20=EC=98=A4?= =?UTF-8?q?=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3665 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- common/lang/en.lang.php | 2 +- config/func.inc.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/common/lang/en.lang.php b/common/lang/en.lang.php index b1c1d18ed..f72275f33 100644 --- a/common/lang/en.lang.php +++ b/common/lang/en.lang.php @@ -84,7 +84,7 @@ $lang->email_address = 'Email'; $lang->homepage = 'Homepage'; $lang->blog = 'Blog'; - $lang->birthday = 'Birthdate'; + $lang->birthday = 'Birthday'; $lang->browser_title = 'Browser Title'; $lang->title = 'Subject'; $lang->title_content = 'Subject+Content'; diff --git a/config/func.inc.php b/config/func.inc.php index 6cdb5ed08..f4a4026e0 100644 --- a/config/func.inc.php +++ b/config/func.inc.php @@ -256,8 +256,8 @@ * @brief 월이름을 return **/ function getMonthName($month, $short = true) { - $short_month = array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"); - $long_month = array("January","February","March","April","May","June","July","August","September","October","November","December"); + $short_month = array('','Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'); + $long_month = array('','January','February','March','April','May','June','July','August','September','October','November','December'); return !$short?$long_month[$month]:$short_month[$month]; }