diff options
Diffstat (limited to 'codebase/data_connector.php')
-rw-r--r-- | codebase/data_connector.php | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/codebase/data_connector.php b/codebase/data_connector.php index 751ea7c..8de6025 100644 --- a/codebase/data_connector.php +++ b/codebase/data_connector.php @@ -149,19 +149,7 @@ class DataConnector extends Connector{ /*! renders self as xml, starting part */ protected function xml_start(){ - $start = "<data"; - - if ($this->dload){ - //info for dyn. loadin - if ($pos=$this->request->get_start()) - $start .= " pos='".$pos."'"; - else - $start .= " pos='0' total_count='".$this->sql->get_size($this->request)."'"; - } - - foreach($this->attributes as $k=>$v) - $start .= " ".$k."='".$v."'"; - $start.= ">"; + $start = parent::xml_start(); foreach($this->sections as $k=>$v) $start .= "<".$k.">".$v."</".$k.">\n"; |