diff options
author | Stanislau Wolski <stanislau.wolski@gmail.com> | 2012-12-22 19:34:48 +0300 |
---|---|---|
committer | Stanislau Wolski <stanislau.wolski@gmail.com> | 2012-12-22 19:34:48 +0300 |
commit | 37e04ddc42dd488c04cabd324708f6307f7daa85 (patch) | |
tree | 0e307279471580be6b3ed9d4f8433d6e2c953094 | |
parent | d8112a0c1de31faed62f2ce8648f95f17d98d457 (diff) | |
download | connector-php-37e04ddc42dd488c04cabd324708f6307f7daa85.zip connector-php-37e04ddc42dd488c04cabd324708f6307f7daa85.tar.gz connector-php-37e04ddc42dd488c04cabd324708f6307f7daa85.tar.bz2 |
[update] mixed connector ignores parameters in the request
-rw-r--r-- | codebase/base_connector.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/codebase/base_connector.php b/codebase/base_connector.php index 0540b8a..97e8ac0 100644 --- a/codebase/base_connector.php +++ b/codebase/base_connector.php @@ -475,7 +475,8 @@ class Connector { $this->event->trigger("onInit", $this); EventMaster::trigger_static("connectorInit",$this); - $this->parse_request(); + if (!$this->as_string) + $this->parse_request(); $this->set_relation(); if ($this->live_update !== false && $this->updating!==false) { |