Fixed a typo

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8858 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
flyskyko 2011-08-24 06:52:37 +00:00
parent 720b7f14cc
commit fe9a50c6c0

View file

@ -16,9 +16,9 @@ class Security
* @constructor
* @param $var Target context
*/
function init($var = null)
function Security($var = null)
{
$this->_targetVar($var);
$this->_targetVar = $var;
}
/**
@ -62,6 +62,8 @@ class Security
}
}
}
if (!$use_context) return $this->_targetVar;
}
/**