From a30da2e71ad2ed23cbcb6011ab848ab888b2dd46 Mon Sep 17 00:00:00 2001 From: knut <> Date: Wed, 22 Feb 2006 21:46:16 +0000 Subject: Did some minor optimization tweaks --- framework/I18N/core/MessageSource_MySQL.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'framework/I18N/core/MessageSource_MySQL.php') 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; -- cgit v1.2.3