aboutsummaryrefslogtreecommitdiffstats
path: root/thumb.php
diff options
context:
space:
mode:
Diffstat (limited to 'thumb.php')
-rw-r--r--thumb.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/thumb.php b/thumb.php
index ff84d89468a0..0183c3fea16d 100644
--- a/thumb.php
+++ b/thumb.php
@@ -51,6 +51,7 @@ if ( file_exists( $thumbPath ) && filemtime( $thumbPath ) >= filemtime( $imagePa
// OK, no valid thumbnail, time to get out the heavy machinery
require_once( 'Setup.php' );
+wfProfileIn( 'thumb.php' );
$img = Image::newFromName( $fileName );
if ( $img ) {
@@ -72,5 +73,7 @@ if ( $thumb && $thumb->path ) {
</body></html>";
}
+wfProfileOut( 'thumb.php' );
+
?>