Sunday, July 12, 2009

Joomla 中文search 既時有句野係上面

Warning: sprintf() [function.sprintf]: Too few arguments in xxx/libraries/joomla/methods.php on line 138


replace as follow, add @ after return

function sprintf($string)
{
$lang =& JFactory::getLanguage();
$args = func_get_args();
if (count($args) > 0) {
$args[0] = $lang->_($args[0]);
return @call_user_func_array('sprintf', $args);
}
return '';
}

No comments: