Merge pull request #963 from djfm/sprintf

// do not use sprintf in installer when it is useless
This commit is contained in:
Gregory Roussac
2013-11-12 01:45:39 -08:00
+3 -1
View File
@@ -136,7 +136,9 @@ class InstallLanguages
}
$args[0] = $translation;
return call_user_func_array('sprintf', $args);
if(count($args) > 1)
return call_user_func_array('sprintf', $args);
else return $translation;
}
/**