From d550415b65398953ff451cda870dafd85b779178 Mon Sep 17 00:00:00 2001 From: hide_d Date: Wed, 18 Apr 2018 22:00:11 +0900 Subject: [PATCH] =?UTF-8?q?=EC=84=B8=EC=85=98=20=EC=84=A4=EC=A0=95?= =?UTF-8?q?=EC=8B=9C=20=EC=98=A4=ED=83=80=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/sammo/Session.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sammo/Session.php b/src/sammo/Session.php index 97ff110d..bd88ab20 100644 --- a/src/sammo/Session.php +++ b/src/sammo/Session.php @@ -121,7 +121,7 @@ class Session public function __set(string $name, $value) { - if (key_exists($name, $this->PROTECED_NAMES)) { + if (key_exists($name, self::PROTECTED_NAMES)) { trigger_error("{$name}은 외부에서 쓰기 금지된 Session 변수입니다.", E_USER_NOTICE); return; }