summaryrefslogtreecommitdiffstats
path: root/codebase
diff options
context:
space:
mode:
authorKirylka <kirylanoshko@gmail.com>2015-04-08 12:59:07 +0300
committerKirylka <kirylanoshko@gmail.com>2015-04-08 12:59:07 +0300
commit277e69d5c6fe9eaa71bf2df9470b85db3f8b20a1 (patch)
tree5137c62d96f88596973000fc7becdfa65be6fbdc /codebase
parent97e6cc31625b9ec2f283ce0cc7a636584748406d (diff)
downloadconnector-php-277e69d5c6fe9eaa71bf2df9470b85db3f8b20a1.zip
connector-php-277e69d5c6fe9eaa71bf2df9470b85db3f8b20a1.tar.gz
connector-php-277e69d5c6fe9eaa71bf2df9470b85db3f8b20a1.tar.bz2
fix
Diffstat (limited to 'codebase')
-rw-r--r--codebase/GridConnector.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/codebase/GridConnector.php b/codebase/GridConnector.php
index 1a0e216..b25a95a 100644
--- a/codebase/GridConnector.php
+++ b/codebase/GridConnector.php
@@ -19,7 +19,7 @@ class GridConnector extends Connector{
*/
public function __construct($res,$type=false,$item_type=false,$data_type=false,$render_type=false){
if (!$item_type) $item_type="DHTMLX\\Connector\\GridDataItem";
- if (!$data_type) $data_type="DHTMLX\\Connector\\Data\\DataProcessor";
+ if (!$data_type) $data_type="DHTMLX\\Connector\\Data\\GridDataProcessor";
if (!$render_type) $render_type="DHTMLX\\Connector\\Output\\RenderStrategy";
parent::__construct($res,$type,$item_type,$data_type,$render_type);
}