11c11 < + 'multiplyDBfieldSize' => 1, // Double: 1-5: Amount used to multiply the DB field size when the install tool is evaluating the database size (eg. "2.5"). This is only useful e.g. if your database is iso-8859-1 encoded but you want to use utf-8 for your site. For Western European sites using utf-8 the need should not be for more than twice the normal single-byte size (2) and for Chinese / Asian languages 3 should suffice. NOTICE: It is recommended to change the native database charset instead! (see Wikipedia: UTF-8 support for more information). NOTICE: This option is deprecated since TYPO3 4.5, and will not be used anymore in 4.7+. Please use proper tools to set your installation to UTF-8. --- > + 'multiplyDBfieldSize' => 1, // Double: 1-5: Amount used to multiply the DB field size when the install tool is evaluating the database size (eg. "2.5"). This is only useful e.g. if your database is iso-8859-1 encoded but you want to use utf-8 for your site. For Western European sites using utf-8 the need should not be for more than twice the normal single-byte size (2) and for Chinese / Asian languages 3 should suffice. NOTICE: It is recommended to change the native database charset instead! (see TYPO3 wiki: UTF-8 support for more information). NOTICE: This option is deprecated since TYPO3 4.5, and will not be used anymore in 4.7+. Please use proper tools to set your installation to UTF-8. 40c40 < + // If this value is -1 then has not been modified in localconf.php --- > + // If this value is -1 then the setting has not been modified in localconf.php 72c72 < + // If this value is -1 then has not been modified in localconf.php --- > + // If this value is -1 then the setting has not been modified in localconf.php 223c223 < + $TYPO3isUtf8 = $GLOBALS['TYPO3_CONF_VARS']['BE']['forceCharset'] == 'utf8'; --- > + $TYPO3isUtf8 = $GLOBALS['TYPO3_CONF_VARS']['BE']['forceCharset'] === 'utf-8'; 283c283 < + $returnVal = $tmpObj->checkForUpdate($explanation, &$showUpdate); --- > + $returnVal = $tmpObj->checkForUpdate($explanation, $showUpdate); 374c374 < + $TYPO3isUtf8 = $GLOBALS['TYPO3_CONF_VARS']['BE']['forceCharset'] == 'utf8'; --- > + $TYPO3isUtf8 = $GLOBALS['TYPO3_CONF_VARS']['BE']['forceCharset'] === 'utf-8';