DownloadPage: Fix ->add() method replacing all existing content instead of appending

This commit is contained in:
Molkobain
2021-05-10 10:32:50 +02:00
parent 463593d6cf
commit 64764228a9

View File

@@ -24,7 +24,7 @@ class DownloadPage extends AjaxPage
*/
public function add($sContent)
{
$this->sContent = $sContent;
$this->sContent .= $sContent;
}
/**