From: <tst...@us...> - 2012-03-08 09:38:40
|
Revision: 9115 http://xoops.svn.sourceforge.net/xoops/?rev=9115&view=rev Author: tstempko Date: 2012-03-08 09:38:30 +0000 (Thu, 08 Mar 2012) Log Message: ----------- Added check if filter module is installed on server; filter module is needed by xoops (for example in admin->preferences menu), however it is not installed by default on some web server configurations. Modified Paths: -------------- XoopsCore/branches/2.5.x/2.5.5/htdocs/install/include/config.php XoopsCore/branches/2.5.x/2.5.5/htdocs/install/language/english/install.php Modified: XoopsCore/branches/2.5.x/2.5.5/htdocs/install/include/config.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.5/htdocs/install/include/config.php 2012-03-08 09:21:58 UTC (rev 9114) +++ XoopsCore/branches/2.5.x/2.5.5/htdocs/install/include/config.php 2012-03-08 09:38:30 UTC (rev 9115) @@ -46,6 +46,7 @@ 'zlib' => array('Zlib', sprintf( PHP_EXTENSION, ZLIB_COMPRESSION) ), 'gd' => array(( function_exists('gd_info') && $gdlib = @gd_info()) ? 'GD ' . $gdlib['GD Version'] : '', sprintf( PHP_EXTENSION, IMAGE_FUNCTIONS) ), 'exif' => array('Exif', sprintf( PHP_EXTENSION, IMAGE_METAS) ), + 'filter' => array('Filter', sprintf( PHP_EXTENSION, FILTER_FUNCTIONS) ), ); // Writable files and directories Modified: XoopsCore/branches/2.5.x/2.5.5/htdocs/install/language/english/install.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.5/htdocs/install/language/english/install.php 2012-03-08 09:21:58 UTC (rev 9114) +++ XoopsCore/branches/2.5.x/2.5.5/htdocs/install/language/english/install.php 2012-03-08 09:38:30 UTC (rev 9115) @@ -181,6 +181,7 @@ define( "ZLIB_COMPRESSION", "Zlib Compression"); define( "IMAGE_FUNCTIONS", "Image functions"); define( "IMAGE_METAS", "Image meta data (exif)"); +define( "FILTER_FUNCTIONS", "Filter functions"); define( "ADMIN_EXIST", "The administrator account already exists.<br />Press <strong>next</strong> to go to the next step."); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |