r8149 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@8170 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ngleader 2011-03-10 02:56:12 +00:00
parent 248932fca8
commit 8cf5f49ac0

View file

@ -42,7 +42,9 @@ class Mobile {
if($_COOKIE['mobile'] == 'true') {
$this->ismobile = true;
}
else if($_COOKIE["mobile"] == 'false') {
else {
$_COOKIE["mobile"] = 'false';
setcookie("mobile", 'false', 0, $xe_web_path);
$this->ismobile = false;
}
}