Your IP : 216.73.217.79


Current Path : /var/www/cesa.co.za/fpdf/
Upload File :
Current File : /var/www/cesa.co.za/fpdf/filter.data.html2xhtml.class.php

<?php

/**
 * Converts tags to lower case
 */

class DataFilterHTML2XHTML extends DataFilter {
  function process(&$data) {
    $data->set_content(html2xhtml($data->get_content()));

    return $data;
  }
}

?>