X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/fiche.php?a=blobdiff_plain;f=includes%2Finstaller%2FMysqlInstaller.php;h=45f932a83b8ebef479a90e8b50fb33cf4b1fcdcf;hb=a3dfd8ee587608f14f25b63f87803999381041b1;hp=d4dcdc2fec5c73dcafb9dbaaa5456a5b3733228a;hpb=20d8afb50ce65bcea43ef5ddc5b4b309bcde15e4;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/installer/MysqlInstaller.php b/includes/installer/MysqlInstaller.php index d4dcdc2fec..45f932a83b 100644 --- a/includes/installer/MysqlInstaller.php +++ b/includes/installer/MysqlInstaller.php @@ -413,20 +413,6 @@ class MysqlInstaller extends DatabaseInstaller { $this->setVar( '_MysqlCharset', reset( $charsets ) ); } - // Do charset selector - if ( count( $charsets ) >= 2 ) { - // getRadioSet() builds a set of labeled radio buttons. - // For grep: The following messages are used as the item labels: - // config-mysql-binary, config-mysql-utf8 - $s .= $this->getRadioSet( [ - 'var' => '_MysqlCharset', - 'label' => 'config-mysql-charset', - 'itemLabelPrefix' => 'config-mysql-', - 'values' => $charsets - ] ); - $s .= $this->parent->getHelpBox( 'config-mysql-charset-help' ); - } - return $s; }