Quote:
Originally Posted by DruidToolz
Ok i am kinda having a small problem... Before i installed this plugin i didn't have this [Output: 23.91 Kb. compressed to 22.99 Kb. by saving 0.92 Kb. (3.87%)] .. Showing at the bottom of the forum.. Can someone please tell me how to edit this xml file to get rid of that info at the bottom.. Thanx
|
Remove this:
PHP Code:
$pagenew_byte=strlen($output);
$page_kilobyte=number_format(($page_byte/1024),2);
$pagenew_kilobyte=number_format(($pagenew_byte/1024),2);
$pagesaved_byte=$page_byte-$pagenew_byte;
$pagesaved_kilobyte=number_format((($pagesaved_byte)/1024),2);
$pagesaved_perc=number_format(((100*$pagesaved_byte)/$page_byte),2);
$output = str_replace('</body>', '<center><span class="smallfont">[Output: ' . $page_kilobyte . ' Kb. compressed to <b>' . $pagenew_kilobyte . '</b> Kb. by saving <b>' . $pagesaved_kilobyte . '</b> Kb. (' . $pagesaved_perc . '%)]</span></center></body>', $output);