diff options
author | thomascube <thomas@roundcube.net> | 2009-06-01 15:35:53 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2009-06-01 15:35:53 +0000 |
commit | 0e99d37a18cf81b549b8fc7e8948e9bd338deaad (patch) | |
tree | c7b0f67ce397d82314aa33f5c022ca40554eb3c4 /program/include/rcube_template.php | |
parent | 0ce119869d77215665be6850099cc229b5720963 (diff) |
Use event system on the client to handle ajax callbacks
Diffstat (limited to 'program/include/rcube_template.php')
-rwxr-xr-x | program/include/rcube_template.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/program/include/rcube_template.php b/program/include/rcube_template.php index 42b642a25..a358d0cfe 100755 --- a/program/include/rcube_template.php +++ b/program/include/rcube_template.php @@ -201,7 +201,9 @@ class rcube_template extends rcube_html_page */ public function command() { - $this->js_commands[] = func_get_args(); + $cmd = func_get_args(); + if (strpos($cmd[0], 'plugin.') === false) + $this->js_commands[] = $cmd; } |