diff --git a/application/modules/opac/controllers/PanierController.php b/application/modules/opac/controllers/PanierController.php
index afb13192de98f8d2205f59f14cbfeeb7014250aa..2ac186c0d4d3656568711724c04800b0908c5a74 100644
--- a/application/modules/opac/controllers/PanierController.php
+++ b/application/modules/opac/controllers/PanierController.php
@@ -150,41 +150,6 @@ class PanierController extends ZendAfi_Controller_Action {
   }
 
 
-  public function selectPanierCourantAction() {
-    $this->view->titre = $this->view->_('Changer de panier');
-    $this->view->id_panier = ($panier = Class_PanierNotice::find($this->_getParam('id_panier')))
-      ? $panier->getId()
-      : '';
-
-    if(!$this->_request->isPost())
-      return;
-
-    if($new_current_panier = Class_PanierNotice::find($this->_request->getPost('id_new_panier')))
-      $this->_user
-        ->setPanierCourant($new_current_panier)
-        ->save();
-
-    $this->_redirectToReferer();
-  }
-
-
-  public function changePanierAjaxAction() {
-    $this->view->redirect = $this->view->absoluteUrl(['action' => 'add-record-ajax',
-                                                      'id_panier' => null]);
-    $this->view->id_panier = $this->_getParam('id_panier');
-    $this->view->titre = $this->view->_('Changer de panier');
-
-    if($this->_request->isPost()){
-      if($new_current_panier = Class_PanierNotice::find($this->_request->getPost('id_new_panier'))){
-        $this->_user
-          ->setPanierCourant($new_current_panier)
-          ->save();
-      }
-      return $this->_redirect($this->_request->getPost('redirect'));
-    }
-  }
-
-
   public function switchAction() {
     return $this->_switchAndRedirect('switch');
   }