Re : Joomla 3.2.0 est disponible
Pour info :
Pour bien débuter l'année
Pour info :
... next week or just after the first of the year
/**
* Create a document object
*
* @return JDocument object
*
* @see JDocument
* @since 11.1
*/
protected static function createDocument()
{
$lang = self::getLanguage();
$input = self::getApplication()->input;
$type = $input->get('format', 'html', 'word');
$version = new JVersion;
$attributes = array(
'charset' => 'utf-8',
'lineend' => 'unix',
'tab' => ' ',
'language' => $lang->getTag(),
'direction' => $lang->isRTL() ? 'rtl' : 'ltr',
/**734**/ 'mediaversion' => $version->getMediaVersion()
);
return JDocument::getInstance($type, $attributes);
}
Commentaire