issue 1650, fixed a bug, html encode problem on extra variable edit page

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10418 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
flyskyko 2012-03-12 06:09:44 +00:00
parent e29775378c
commit 0526100d5f
3 changed files with 3 additions and 3 deletions

View file

@ -902,7 +902,7 @@
$extra_keys = $this->getExtraKeys($module_srl);
Context::set('extra_keys', $extra_keys);
$security = new Security();
$security->encodeHTML('extra_keys..name','extra_keys..eid');
$security->encodeHTML('extra_keys..eid');
// Get information of module_grants
$oTemplate = &TemplateHandler::getInstance();