diff options
author | Dmitry <dmitry@dhtmlx.com> | 2012-03-27 12:02:44 +0200 |
---|---|---|
committer | Dmitry <dmitry@dhtmlx.com> | 2012-03-27 12:02:44 +0200 |
commit | 97ab467fd6c5671eb81b2110053676b555b97df6 (patch) | |
tree | 0310e09a98f8e57ee27b92fa91675d2512dc799b | |
parent | 9999864a2490604e3579fbf74a77a2378bb06e09 (diff) | |
download | connector-php-97ab467fd6c5671eb81b2110053676b555b97df6.zip connector-php-97ab467fd6c5671eb81b2110053676b555b97df6.tar.gz connector-php-97ab467fd6c5671eb81b2110053676b555b97df6.tar.bz2 |
fix live-update according output object usage
-rw-r--r-- | codebase/update.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/codebase/update.php b/codebase/update.php index 4931ad7..dacc211 100644 --- a/codebase/update.php +++ b/codebase/update.php @@ -195,8 +195,8 @@ class DataUpdate{ /*! adds action version in output XML as userdata */ - public function version_output() { - echo $this->get_version(); + public function version_output($conn, $out) { + $out->add($this->get_version()); } |