diff options
| author | Graham Eames <grahamje@users.sourceforge.net> | 2006-08-13 18:21:43 +0000 |
|---|---|---|
| committer | Graham Eames <grahamje@users.sourceforge.net> | 2006-08-13 18:21:43 +0000 |
| commit | 332bd12835b5330637024c77e31ba98ab27e9699 (patch) | |
| tree | cf9ab920301b8ef96b2e1e895e3460eb48d21d04 /phpBB | |
| parent | 125b1dde8addabe2c0d6da3f88be32d1e27e6d05 (diff) | |
| download | forums-332bd12835b5330637024c77e31ba98ab27e9699.tar forums-332bd12835b5330637024c77e31ba98ab27e9699.tar.gz forums-332bd12835b5330637024c77e31ba98ab27e9699.tar.bz2 forums-332bd12835b5330637024c77e31ba98ab27e9699.tar.xz forums-332bd12835b5330637024c77e31ba98ab27e9699.zip | |
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
Diffstat (limited to 'phpBB')
| -rwxr-xr-x | phpBB/install/install_install.php | 2 | ||||
| -rwxr-xr-x | phpBB/language/en/install.php | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php index e0c90e619b..60bc34c41a 100755 --- a/phpBB/install/install_install.php +++ b/phpBB/install/install_install.php @@ -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 diff --git a/phpBB/language/en/install.php b/phpBB/language/en/install.php index c93ccd78f4..b31dc5e9de 100755 --- a/phpBB/language/en/install.php +++ b/phpBB/language/en/install.php @@ -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', |
