1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-06 07:35:29 +02:00

Add GD to the list of optional requirements since it allows more VC images to be used

git-svn-id: file:///svn/phpbb/trunk@6291 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Graham Eames 2006-08-13 18:21:43 +00:00
parent 125b1dde8a
commit 332bd12835
2 changed files with 2 additions and 1 deletions

View File

@ -1854,7 +1854,7 @@ class install_install extends module
/**
* Specific PHP modules we may require for certain optional or extended features
*/
var $php_dlls_other = array('zlib', 'ftp', 'xml');
var $php_dlls_other = array('zlib', 'ftp', 'gd', 'xml');
/**
* Details of the database management systems supported

View File

@ -92,6 +92,7 @@ $lang = array_merge($lang, array(
'DISABLE_KEYS' => 'Disabling keys',
'DLL_FIREBIRD' => 'Firebird 1.5+',
'DLL_FTP' => 'Remote FTP support [ Installation ]',
'DLL_GD' => 'GD graphics support [ Visual Confirmation ]',
'DLL_MBSTRING' => 'Multi-byte character support',
'DLL_MSSQL' => 'MSSQL Server 2000+',
'DLL_MSSQL_ODBC' => 'MSSQL Server 2000+ via ODBC',