From c37254d8f994f964deca56234fa05121c61e6d53 Mon Sep 17 00:00:00 2001 From: lch Date: Mon, 5 Jul 2021 00:54:49 +0000 Subject: [PATCH] =?UTF-8?q?"=EA=B5=90=EC=9C=A1=EC=9D=BC=EC=A0=95=EC=84=A0?= =?UTF-8?q?=ED=83=9D=EB=B6=80=EB=B6=84=20=EA=B5=90=EC=9C=A1=EC=9E=A5=20?= =?UTF-8?q?=EC=A7=80=EC=97=AD=EB=AA=85=20=EC=88=A8=EA=B9=80=20=EC=98=88)?= =?UTF-8?q?=20[=EB=B6=80=EC=82=B0]"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Base/Controller/FOCommon.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Base/Controller/FOCommon.cs b/Base/Controller/FOCommon.cs index 9efc879..92a34ee 100644 --- a/Base/Controller/FOCommon.cs +++ b/Base/Controller/FOCommon.cs @@ -432,7 +432,8 @@ namespace NP.Base.Controllers var result = Dao.Get("cm.cminningscds.applyedu", new System.Collections.Hashtable() { { "cmno", cmno }, { "month", (month == null) ? null : month } }); foreach (var item in result) { - item.scdInfoSummary = string.Format("[{0}] {1}", item.studyplacename, item.estart.ToString("yyyy년 MM월 dd일 ddd요일 HH:mm")); + //item.scdInfoSummary = string.Format("[{0}] {1}", item.studyplacename, item.estart.ToString("yyyy년 MM월 dd일 ddd요일 HH:mm")); + item.scdInfoSummary = string.Format("{0}", item.estart.ToString("yyyy년 MM월 dd일 ddd요일 HH:mm")); if (item.estart < DateTime.Now) item.isEnd = true; }