diff options
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(); |