diff options
author | emkael <emkael@tlen.pl> | 2016-04-08 12:49:19 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-04-08 12:49:19 +0200 |
commit | 843c8045c2b5bf647fe8559ac5dee810736345c2 (patch) | |
tree | 5acb47016b2a67cfe7cf659c12166823f38e2bf8 /lib/prado/framework/TComponent.php | |
parent | a4440ac4c32c3fd435ec9abe4181f8dac9353206 (diff) |
* Prado upgraded to 3.3.rb4ed61bfeffee3a47e8b313f64cc7436a99cb460
Diffstat (limited to 'lib/prado/framework/TComponent.php')
-rw-r--r-- | lib/prado/framework/TComponent.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/prado/framework/TComponent.php b/lib/prado/framework/TComponent.php index 127b68a..0752d04 100644 --- a/lib/prado/framework/TComponent.php +++ b/lib/prado/framework/TComponent.php @@ -555,7 +555,10 @@ class TComponent return isset($args[0])?$args[0]:null; } - throw new TApplicationException('component_method_undefined',get_class($this),$method); + // don't thrown an exception for __magicMethods() or any other weird methods natively implemented by php + if (!method_exists($this, $method)) { + throw new TApplicationException('component_method_undefined',get_class($this),$method); + } } |