Actions
Bug #1464
closedCB Installer fails on WINDOWS Server with php_uname() disabled
Description
in pcl.pclziplib.php on line 5873
change
if (stristr(php_uname(), 'windows')) {
to
if ( substr( PHP_OS, 0, 3 ) == 'WIN' ) {
Actions
Added by nant almost 16 years ago. Updated almost 16 years ago.
Description
in pcl.pclziplib.php on line 5873
change
if (stristr(php_uname(), 'windows')) {
to
if ( substr( PHP_OS, 0, 3 ) == 'WIN' ) {
Fixed in r871 .