From 11e4a9ce069f9b627e08147e9a268f765f8e76e0 Mon Sep 17 00:00:00 2001 From: zero Date: Wed, 18 Apr 2007 05:46:44 +0000 Subject: [PATCH] git-svn-id: http://xe-core.googlecode.com/svn/trunk@1214 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- modules/counter/counter.controller.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/counter/counter.controller.php b/modules/counter/counter.controller.php index 374c876e5..dcf839d2f 100644 --- a/modules/counter/counter.controller.php +++ b/modules/counter/counter.controller.php @@ -17,6 +17,10 @@ * @brief 카운터 기록 **/ function procCounterExecute() { + + $oDB = &DB::getInstance(); + $oDB->begin(); + // 로그를 검사 $oCounterModel = &getModel('counter'); @@ -39,6 +43,8 @@ $this->insertPageView(); } } + + $oDB->commit(); } /**