From bf9266ef37c89bb0269c408b4a29f31069d79916 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 19 Mar 2013 07:59:24 -0400 Subject: [PATCH] Better function name --- export.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/export.php b/export.php index 3db4231799..bbc682f2cd 100644 --- a/export.php +++ b/export.php @@ -143,7 +143,7 @@ $time_start = time(); * * @return bool */ -function PMA_isGzhandlerEnabled() +function PMA_isGzHandlerEnabled() { return in_array('ob_gzhandler', ob_list_handlers()); } @@ -163,7 +163,7 @@ function PMA_gzencodeNeeded() // and therefore, will gzip encode the content && ! (function_exists('apache_get_modules') && in_array('mod_deflate', apache_get_modules())) - && ! PMA_isGzhandlerEnabled() + && ! PMA_isGzHandlerEnabled() ) { return true; } else {