diff options
author | Maria Staskova <masha@dhtmlx.com> | 2014-05-20 14:52:26 +0300 |
---|---|---|
committer | Maria Staskova <masha@dhtmlx.com> | 2014-05-20 14:52:26 +0300 |
commit | 8959cc7e4727f5e28f6d3d44b5124d364dab2253 (patch) | |
tree | a35cb0c97f2f98d1a5407ba316816da227b719f9 /codebase | |
parent | e8adb5a9ce248e67c523fac807f9ee1bc33bcb7d (diff) | |
download | connector-php-8959cc7e4727f5e28f6d3d44b5124d364dab2253.zip connector-php-8959cc7e4727f5e28f6d3d44b5124d364dab2253.tar.gz connector-php-8959cc7e4727f5e28f6d3d44b5124d364dab2253.tar.bz2 |
[fix] combo_connector.php, selected option
Diffstat (limited to 'codebase')
-rw-r--r-- | codebase/combo_connector.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/codebase/combo_connector.php b/codebase/combo_connector.php index 35c66e9..ad28017 100644 --- a/codebase/combo_connector.php +++ b/codebase/combo_connector.php @@ -25,7 +25,7 @@ class ComboDataItem extends DataItem{ function to_xml_start(){ if ($this->skip) return ""; - return "<option ".($this->selected?"selected='true'":"")."value='".$this->get_id()."'><![CDATA[".$this->data[$this->config->text[0]["name"]]."]]>"; + return "<option ".($this->selected?"selected='true' ":"")."value='".$this->get_id()."'><![CDATA[".$this->data[$this->config->text[0]["name"]]."]]>"; } /*! return self as XML string, ending part */ |