diff options
author | Kirylka <kirylanoshko@gmail.com> | 2015-04-07 19:05:43 +0300 |
---|---|---|
committer | Kirylka <kirylanoshko@gmail.com> | 2015-04-07 19:05:43 +0300 |
commit | 53e93d10c99144344dda7c5a46e0abafd0a6a96f (patch) | |
tree | db645b9c3880498cf87609628792e3d443f757b0 | |
parent | e03e2cd01bac8a86bdc2f2721d76f31bbeace752 (diff) | |
download | connector-php-53e93d10c99144344dda7c5a46e0abafd0a6a96f.zip connector-php-53e93d10c99144344dda7c5a46e0abafd0a6a96f.tar.gz connector-php-53e93d10c99144344dda7c5a46e0abafd0a6a96f.tar.bz2 |
fixes
-rw-r--r-- | codebase/JSONDataConnector.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/codebase/JSONDataConnector.php b/codebase/JSONDataConnector.php index caec0a5..fd6b3a0 100644 --- a/codebase/JSONDataConnector.php +++ b/codebase/JSONDataConnector.php @@ -9,7 +9,7 @@ class JSONDataConnector extends DataConnector{ public function __construct($res,$type=false,$item_type=false,$data_type=false,$render_type=false){ if (!$item_type) $item_type="DHTMLX\\Connector\\Data\\JSONCommonDataItem"; - if (!$data_type) $data_type="DHTMLX\\Connector\\CommonDataProcessor"; + if (!$data_type) $data_type="DHTMLX\\Connector\\Data\\CommonDataProcessor"; if (!$render_type) $render_type="DHTMLX\\Connector\\Output\\JSONRenderStrategy"; $this->data_separator = ",\n"; parent::__construct($res,$type,$item_type,$data_type,$render_type); |