From 09a334048d35feb5d83d27984d850819042b4878 Mon Sep 17 00:00:00 2001 From: inureyes Date: Fri, 24 Jul 2009 03:57:25 +0000 Subject: [PATCH] =?UTF-8?q?=20refs=20#1300=20=20=20*=20=EC=83=88=20=20line?= =?UTF-8?q?=20=EC=9D=84=20=EC=9E=91=EC=84=B1=ED=95=A0=20=EB=95=8C=20?= =?UTF-8?q?=EC=BA=90=EC=8B=9C=EB=A5=BC=20=EC=82=AD=EC=A0=9C=ED=95=98?= =?UTF-8?q?=EB=8F=84=EB=A1=9D=20=ED=95=A8.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- interface/blog/line.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/interface/blog/line.php b/interface/blog/line.php index 83ba1e43c..140dd72ca 100644 --- a/interface/blog/line.php +++ b/interface/blog/line.php @@ -12,7 +12,14 @@ $password = Setting::getBlogSetting('LinePassword', null, true); if($password == $_GET['key']) { $lineobj->content = $_GET['content']; - $lineobj->showResult($lineobj->add()); + $result = $lineobj->add(); + $cache = new pageCache; + $cache->name = 'linesATOM'; + $cache->purge(); + $cache->reset(); + $cache->name = 'linesRSS'; + $cache->purge(); + $lineobj->showResult($result); } } else { /// Prints public lines @@ -27,4 +34,5 @@ require ROOT . '/interface/common/blog/end.php'; fireEvent('OBEnd'); } +exit; ?>