From a480f222a7fb7d00d6c6e28b04f2e72e22ac026e Mon Sep 17 00:00:00 2001 From: gloas <gloas@git-test.afi-sa.fr> Date: Mon, 10 Jun 2013 08:43:56 +0000 Subject: [PATCH] =?UTF-8?q?Skin:=20d=C3=A9placement=20sur=20le=20form=20de?= =?UTF-8?q?=20modification=20du=20nom=20de=20panier=20lorsqu'on=20clic=20s?= =?UTF-8?q?ur=20modifier=20nom=20du=20panier?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/modules/opac/views/scripts/panier/index.phtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/modules/opac/views/scripts/panier/index.phtml b/application/modules/opac/views/scripts/panier/index.phtml index ac7a2590eae..4e7e9e14004 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>'; -- GitLab