diff --git a/application/modules/opac/views/scripts/panier/index.phtml b/application/modules/opac/views/scripts/panier/index.phtml index ac7a2590eaebeca2199efd94c122d1ef2e66713b..4e7e9e14004c16eec093c1e22ec124779fdaf458 100644 --- a/application/modules/opac/views/scripts/panier/index.phtml +++ b/application/modules/opac/views/scripts/panier/index.phtml @@ -51,10 +51,10 @@ if($this->panier_courant) { $this->openBoite($this->panier_courant->getLibelle()."<small>".$msg."</small>"); // Formulaire modif du libelle - print('<div style="display:none" id="maj_titre">'); + print('<div style="display:none" id="maj_titre" name="maj_titre">'); print('<form method="post" action="'.$this->url(['action' => 'majtitrepanier', 'id_panier' => $this->panier_courant->getId()]).'">'.$this->_('Nouveau titre').'<input type="text" size="40" maxlength="40" id="new_libelle" name="new_libelle" value="'.htmlspecialchars($this->panier_courant->getLibelle()).'">'); print(' <input name="button" type="submit" class="submit" value=""/></form><br></div>'); - print('<a href="#" onclick="document.getElementById(\'maj_titre\').style.display=\'block\';">» '.$this->_('Modifier le titre du panier').'</a>'); + print('<a href="#maj_titre" onclick="document.getElementById(\'maj_titre\').style.display=\'block\';">» '.$this->_('Modifier le titre du panier').'</a>'); if($nombre_notices > 0) { echo ' » '.$this->_('Exporter ce panier: '); echo '<a href="'.$this->url(['action' => 'export-unimarc', 'id_panier' => $this->panier_courant->getId()]).'">Unimarc</a>';