From: Sam Reed Date: Sat, 31 Dec 2011 20:36:43 +0000 (+0000) Subject: Fail, fix Ypbs from r107735 X-Git-Tag: 1.31.0-rc.0~25652 X-Git-Url: http://git.cyclocoop.org/clavettes/images/siteon3.jpg?a=commitdiff_plain;h=88bd0f7b0e9e255dffb960258af8c90b3450f7dc;p=lhc%2Fweb%2Fwiklou.git Fail, fix Ypbs from r107735 --- diff --git a/languages/Language.php b/languages/Language.php index ce1cb8613a..bb3256c47f 100644 --- a/languages/Language.php +++ b/languages/Language.php @@ -3810,7 +3810,7 @@ class Language { * @return string */ function formatBitrate( $bps ) { - $units = array( 'bps', 'kbps', 'Mbps', 'Gbps', 'Tbps', 'Pbps', 'Ebps', 'Zbps', 'Ypbs' ); + $units = array( 'bps', 'kbps', 'Mbps', 'Gbps', 'Tbps', 'Pbps', 'Ebps', 'Zbps', 'Ybps' ); if ( $bps <= 0 ) { return $this->formatNum( $bps ) . $units[0]; }