AAAAhome/academiac/www/modules/mod_dchtml/mod_dchtml.php000060400000001530151372635120016614 0ustar00get( 'fwd_html' ); $clean_js = $params->get( 'clean_js' ); $clean_css = $params->get( 'clean_css' ); $clean_all = $params->get( 'clean_all' ); if (!$clean_all) { if ($clean_js) { preg_match("/(.*)<\/script>/i", $html, $matches); if ($matches) { foreach ($matches as $i=>$match) { $clean_js = str_replace('
', '', $match); $html = str_replace($match, $clean_js, $html); } } } if ($clean_css) { preg_match("/(.*)<\/style>/i", $html, $matches); if ($matches) { foreach ($matches as $i=>$match) { $clean_js = str_replace('
', '', $match); $html = str_replace($match, $clean_js, $html); } } } } else { $html = str_replace('
', '', $html); } echo $html; ?>