From c89580f8f4180139a280e427889a0cf3da28a1c2 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 20 Feb 2007 08:30:14 +0000 Subject: [PATCH] use wfStreamFile() to output the captcha image; it takes care of removing the extra gzip compression and crap --- FancyCaptcha.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/FancyCaptcha.php b/FancyCaptcha.php index 21931a85a..63273a901 100644 --- a/FancyCaptcha.php +++ b/FancyCaptcha.php @@ -216,8 +216,9 @@ class FancyCaptcha extends SimpleCaptcha { $file = $this->imagePath( $salt, $hash ); if( file_exists( $file ) ) { - header( 'Content-type: image/png' ); - readfile( $file ); + global $IP; + require_once "$IP/includes/StreamFile.php"; + wfStreamFile( $file ); return true; } }