From: Sam Reed Date: Wed, 2 Feb 2011 15:48:43 +0000 (+0000) Subject: Followup r81313, fix 210 typo X-Git-Tag: 1.31.0-rc.0~32251 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/cotisations/rappels.php?a=commitdiff_plain;h=e3821a06def81acf063af6fd416750458c0c166d;p=lhc%2Fweb%2Fwiklou.git Followup r81313, fix 210 typo --- diff --git a/includes/installer/MysqlUpdater.php b/includes/installer/MysqlUpdater.php index db101dada3..188c58cae9 100644 --- a/includes/installer/MysqlUpdater.php +++ b/includes/installer/MysqlUpdater.php @@ -820,7 +820,7 @@ class MysqlUpdater extends DatabaseUpdater { $res = $this->db->query( "SHOW COLUMNS FROM $langlinks LIKE 'll_lang'" ); $row = $this->db->fetchObject( $res ); - if ( $row && $row->Type == "varbinary(210)" ) { + if ( $row && $row->Type == "varbinary(10)" ) { $this->output( 'Updating length of ll_lang in langlinks...' ); $this->applyPatch( 'patch-langlinks-ll_lang-20.sql' ); $this->output( "done.\n" );