mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-17 17:32:15 +09:00
Prevent errors
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9854 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
04a8e38201
commit
a9ee03e512
1 changed files with 2 additions and 1 deletions
|
|
@ -1059,7 +1059,8 @@ class Context {
|
|||
**/
|
||||
function getRequestVars() {
|
||||
is_a($this,'Context')?$self=&$this:$self=&Context::getInstance();
|
||||
return clone($self->get_vars);
|
||||
if($self->get_vars) return clone($self->get_vars);
|
||||
return new stdClass;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue