diff options
author | Stanislau Wolski <stanislau.wolski@gmail.com> | 2014-04-18 18:39:33 +0300 |
---|---|---|
committer | Stanislau Wolski <stanislau.wolski@gmail.com> | 2014-04-18 18:39:33 +0300 |
commit | 6debdbfed28cf41c9a532ef4f3713818de890941 (patch) | |
tree | 64986828c0994895866930dbd3833e4d6524a6cf /codebase/data_connector.php | |
parent | d5aff0e2d4ff69ba048957820a25cb4810db2e52 (diff) | |
download | connector-php-6debdbfed28cf41c9a532ef4f3713818de890941.zip connector-php-6debdbfed28cf41c9a532ef4f3713818de890941.tar.gz connector-php-6debdbfed28cf41c9a532ef4f3713818de890941.tar.bz2 |
[fix] regression in rootId processing
Diffstat (limited to 'codebase/data_connector.php')
-rw-r--r-- | codebase/data_connector.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/codebase/data_connector.php b/codebase/data_connector.php index c7b33bd..165cc0f 100644 --- a/codebase/data_connector.php +++ b/codebase/data_connector.php @@ -398,7 +398,7 @@ class TreeDataConnector extends DataConnector{ if (isset($_GET[$this->parent_name])) $this->request->set_relation($_GET[$this->parent_name]); else - $this->request->set_relation("0"); + $this->request->set_relation($this->rootId); $this->request->set_limit(0,0); //netralize default reaction on dyn. loading mode } |