summaryrefslogtreecommitdiff
path: root/framework/I18N/core/MessageSource_MySQL.php
diff options
context:
space:
mode:
Diffstat (limited to 'framework/I18N/core/MessageSource_MySQL.php')
-rw-r--r--framework/I18N/core/MessageSource_MySQL.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/I18N/core/MessageSource_MySQL.php b/framework/I18N/core/MessageSource_MySQL.php
index dab8de9f..67d86d87 100644
--- a/framework/I18N/core/MessageSource_MySQL.php
+++ b/framework/I18N/core/MessageSource_MySQL.php
@@ -225,9 +225,9 @@ class MessageSource_MySQL extends MessageSource
$variant = null;
- for($i = 0; $i < count($variants); $i++)
- {
- if(strlen($variants[$i])>0)
+ for($i = 0, $k = count($variants); $i < $k; ++$i)
+ {
+ if(isset($variants[$i]{0}))
{
$variant .= ($variant)?'_'.$variants[$i]:$variants[$i];
$catalogues[] = $catalogue.'.'.$variant;