diff --git a/var/Typecho/Widget.php b/var/Typecho/Widget.php index 9ba7d0dd..474f4e37 100644 --- a/var/Typecho/Widget.php +++ b/var/Typecho/Widget.php @@ -362,7 +362,12 @@ abstract class Typecho_Widget */ public function __call($name, $args) { - echo $this->{$name}; + $method = 'call' . ucfirst($name); + $this->pluginHandle()->trigger($plugged)->{$method}($this, $args); + + if (!$plugged) { + echo $this->{$name}; + } } /**