Skip to content

Commit

Permalink
Fix function name
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Oct 19, 2013
1 parent 8c1e491 commit 851d088
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion maintainer-tools/horde-installer-phar-create
Expand Up @@ -70,7 +70,7 @@ class HordeCreatePharInstaller
$phar->buildFromDirectory($this->_build);
$phar->setStub(
'<?php ' .
'if (!extension_exists("zlib")) { exit("The installer requires the zlib library to be compiled into PHP."); }' .
'if (!extension_loaded("zlib")) { exit("The installer requires the zlib library to be compiled into PHP."); }' .
'Phar::mapPhar("installer.phar");' .
'require "phar://installer.phar/installer.php";' .
'__HALT_COMPILER(); ?>'
Expand Down

0 comments on commit 851d088

Please sign in to comment.