mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00: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:
parent
125b1dde8a
commit
332bd12835
2 changed files with 2 additions and 1 deletions
|
@ -1854,7 +1854,7 @@ class install_install extends module
|
||||||
/**
|
/**
|
||||||
* Specific PHP modules we may require for certain optional or extended features
|
* 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
|
* Details of the database management systems supported
|
||||||
|
|
|
@ -92,6 +92,7 @@ $lang = array_merge($lang, array(
|
||||||
'DISABLE_KEYS' => 'Disabling keys',
|
'DISABLE_KEYS' => 'Disabling keys',
|
||||||
'DLL_FIREBIRD' => 'Firebird 1.5+',
|
'DLL_FIREBIRD' => 'Firebird 1.5+',
|
||||||
'DLL_FTP' => 'Remote FTP support [ Installation ]',
|
'DLL_FTP' => 'Remote FTP support [ Installation ]',
|
||||||
|
'DLL_GD' => 'GD graphics support [ Visual Confirmation ]',
|
||||||
'DLL_MBSTRING' => 'Multi-byte character support',
|
'DLL_MBSTRING' => 'Multi-byte character support',
|
||||||
'DLL_MSSQL' => 'MSSQL Server 2000+',
|
'DLL_MSSQL' => 'MSSQL Server 2000+',
|
||||||
'DLL_MSSQL_ODBC' => 'MSSQL Server 2000+ via ODBC',
|
'DLL_MSSQL_ODBC' => 'MSSQL Server 2000+ via ODBC',
|
||||||
|
|
Loading…
Add table
Reference in a new issue