Suite à l'installation de la 2.5.22, le message suivant apparait lorsque l'on souhaite modifier une catégorie : Fatal error: Call to undefined method stdClass:nDisplay() in /htdocs/libraries/joomla/html/editor.php on line 459. Dans la version précédente 2.5.20 tout allait bien.
J'ai repris et appliqué un correctif proposé pour cette même erreur sur le forum : http://www.aide-joomla.com/forum/joo...-de-l-utiliser et consistant à modifier une partie du code de "editor.php" :
// Try to authenticate
code origine
if ($temp = $plugin->onDisplay($editor, $this->asset, $this->author))
{
$result[] = $temp;
}
remplacé par
if (method_exists($plugin, 'onDisplay')) {
$result[] = $plugin->onDisplay($editor);
}
mais si je retrouve une fenêtre d'édition, j'ai dans ce cas le warning suivant :
Warning: Missing argument 2 for plgButtonImage:nDisplay(), called in /htdocs/libraries/joomla/html/editor.php on line 464 and defined in /htdocs/plugins/editors-xtd/image/image.php on line 38
Warning: Missing argument 3 for plgButtonImage:nDisplay(), called in /htdocs/libraries/joomla/html/editor.php on line 464 and defined in /htdocs/plugins/editors-xtd/image/image.php on line 38
[Toggle Editor]
Avez-vous une idée pour un correctif stable ?
J'ai repris et appliqué un correctif proposé pour cette même erreur sur le forum : http://www.aide-joomla.com/forum/joo...-de-l-utiliser et consistant à modifier une partie du code de "editor.php" :
// Try to authenticate
code origine
if ($temp = $plugin->onDisplay($editor, $this->asset, $this->author))
{
$result[] = $temp;
}
remplacé par
if (method_exists($plugin, 'onDisplay')) {
$result[] = $plugin->onDisplay($editor);
}
mais si je retrouve une fenêtre d'édition, j'ai dans ce cas le warning suivant :
Warning: Missing argument 2 for plgButtonImage:nDisplay(), called in /htdocs/libraries/joomla/html/editor.php on line 464 and defined in /htdocs/plugins/editors-xtd/image/image.php on line 38
Warning: Missing argument 3 for plgButtonImage:nDisplay(), called in /htdocs/libraries/joomla/html/editor.php on line 464 and defined in /htdocs/plugins/editors-xtd/image/image.php on line 38
[Toggle Editor]
Avez-vous une idée pour un correctif stable ?