summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKirylka <kirylanoshko@gmail.com>2015-04-07 19:05:43 +0300
committerKirylka <kirylanoshko@gmail.com>2015-04-07 19:05:43 +0300
commit53e93d10c99144344dda7c5a46e0abafd0a6a96f (patch)
treedb645b9c3880498cf87609628792e3d443f757b0
parente03e2cd01bac8a86bdc2f2721d76f31bbeace752 (diff)
downloadconnector-php-53e93d10c99144344dda7c5a46e0abafd0a6a96f.zip
connector-php-53e93d10c99144344dda7c5a46e0abafd0a6a96f.tar.gz
connector-php-53e93d10c99144344dda7c5a46e0abafd0a6a96f.tar.bz2
fixes
-rw-r--r--codebase/JSONDataConnector.php2
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);