summaryrefslogtreecommitdiffstats
path: root/codebase/Dhtmlx/Connector/OptionsConnector.php
diff options
context:
space:
mode:
authorEgor <egor.26.93@gmail.com>2015-06-16 15:48:31 +0300
committerEgor <egor.26.93@gmail.com>2015-06-16 15:48:31 +0300
commit67129e12d10b77911d9250b38b42b42dd5b601b4 (patch)
tree1cb3555d8e8148a38a4e6701f2f8dddb3f68c21d /codebase/Dhtmlx/Connector/OptionsConnector.php
parent4081482ce6cf1a6c0894a8be02a57d21f3cdc7dd (diff)
downloadconnector-php-67129e12d10b77911d9250b38b42b42dd5b601b4.zip
connector-php-67129e12d10b77911d9250b38b42b42dd5b601b4.tar.gz
connector-php-67129e12d10b77911d9250b38b42b42dd5b601b4.tar.bz2
Added namespaces for dhtmlx components.3.0.0
Diffstat (limited to 'codebase/Dhtmlx/Connector/OptionsConnector.php')
-rwxr-xr-x[-rw-r--r--]codebase/Dhtmlx/Connector/OptionsConnector.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/codebase/Dhtmlx/Connector/OptionsConnector.php b/codebase/Dhtmlx/Connector/OptionsConnector.php
index f8fbea3..0fb1e4e 100644..100755
--- a/codebase/Dhtmlx/Connector/OptionsConnector.php
+++ b/codebase/Dhtmlx/Connector/OptionsConnector.php
@@ -6,7 +6,7 @@ namespace Dhtmlx\Connector;
class OptionsConnector extends Connector {
protected $init_flag=false;//!< used to prevent rendering while initialization
public function __construct($res,$type=false,$item_type=false,$data_type=false){
- if (!$item_type) $item_type="DataItem";
+ if (!$item_type) $item_type="Dhtmlx\\Connector\\Data\\DataItem";
if (!$data_type) $data_type=""; //has not sense, options not editable
parent::__construct($res,$type,$item_type,$data_type);
}