- Fixing file upload/download troubles: make sure that magic_quotes_gpc is turned off and that the output is not truncated by AjaxWebPage.

SVN:trunk[229]
This commit is contained in:
Denis Flaven
2010-01-06 20:06:16 +00:00
parent 1c90a1de87
commit 9fc06ff6e4
2 changed files with 17 additions and 1 deletions

View File

@@ -42,7 +42,7 @@ class ajax_page extends web_page
}
$s_captured_output = ob_get_contents();
ob_end_clean();
echo trim($this->s_content);
echo $this->s_content;
if (!empty($this->m_sReadyScript))
{
echo "<script>\n";