privacy_image_cache: Pictures will be compressed before the output

This commit is contained in:
Michael Vogel 2013-02-06 08:03:10 +01:00
parent 19495c1e11
commit 395a419513
2 changed files with 16 additions and 30 deletions

View file

@ -32,10 +32,12 @@ function rendertime_page_end(&$a, &$o) {
round($a->performance["rendering"], 3),
round($a->performance["parser"], 3),
round($a->performance["file"], 3),
//round($a->performance["markstart"], 3),
round($duration - $a->performance["database"] - $a->performance["network"]
- $a->performance["rendering"] - $a->performance["parser"]
- $a->performance["file"], 3),
round($duration, 3))."</div>";
round($duration, 3)
//round($a->performance["markstart"], 3)
//round($a->performance["plugin"], 3)
)."</div>";
}