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 '';
}
Sunday, July 12, 2009
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment