diff options
author | Dmitry <dmitry@dhtmlx.com> | 2011-12-19 16:51:01 +0200 |
---|---|---|
committer | Dmitry <dmitry@dhtmlx.com> | 2011-12-19 16:51:01 +0200 |
commit | 8ea0fdb184ee3baaa44eea2768b202155e1f312f (patch) | |
tree | fba56e23ea890bc9d28b4c6f5183b4e803ca003d /codebase/convert.php | |
parent | 0e246885222003478703ca127eaf04f71899c148 (diff) | |
download | connector-php-8ea0fdb184ee3baaa44eea2768b202155e1f312f.zip connector-php-8ea0fdb184ee3baaa44eea2768b202155e1f312f.tar.gz connector-php-8ea0fdb184ee3baaa44eea2768b202155e1f312f.tar.bz2 |
-add set_convert_mode for GridConfiguration
Diffstat (limited to 'codebase/convert.php')
-rw-r--r-- | codebase/convert.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/codebase/convert.php b/codebase/convert.php index 65adea0..59e85ab 100644 --- a/codebase/convert.php +++ b/codebase/convert.php @@ -50,7 +50,7 @@ class ConvertService{ curl_setopt($handle, CURLOPT_POST, true); curl_setopt($handle, CURLOPT_HEADER, false); curl_setopt($handle, CURLOPT_RETURNTRANSFER, true); - curl_setopt($handle, CURLOPT_POSTFIELDS, "grid_xml=".urlencode(str_replace("<rows>","<rows profile='color'>",str_replace("</head>", "</columns></head>", str_replace("<head>", "<head><columns>",$out))))); + curl_setopt($handle, CURLOPT_POSTFIELDS, "grid_xml=".urlencode(str_replace("<rows>","<rows profile='color'>", $out))); $out->reset(); |