diff --git a/VERSIONS_HOTLINE/72999 b/VERSIONS_HOTLINE/72999
new file mode 100644
index 0000000000000000000000000000000000000000..49789cbf486ad8117bb1da7117c93c8d4abf70d0
--- /dev/null
+++ b/VERSIONS_HOTLINE/72999
@@ -0,0 +1,2 @@
+ - ticket #72999 : Boite bibliothèque : correction des liens de pagination.
+ 
\ No newline at end of file
diff --git a/library/ZendAfi/View/Helper/Accueil/Library.php b/library/ZendAfi/View/Helper/Accueil/Library.php
index 0aa7fba3731e8778214556144f0a1b15be848cf1..8d1770ce667c322dc995340332ba99fc577b9120 100644
--- a/library/ZendAfi/View/Helper/Accueil/Library.php
+++ b/library/ZendAfi/View/Helper/Accueil/Library.php
@@ -333,7 +333,8 @@ class ZendAfi_View_Helper_Accueil_Library extends ZendAfi_View_Helper_Accueil_Ba
                     'controller' => 'bib',
                     'action' => 'widget-page',
                     'id_module' => $this->id_module,
-                    'id_division' => $this->division];
+                    'id_division' => $this->division,
+                    'render' => 'ajax'];
 
     $paginator = (new Zend_Paginator(new Zend_Paginator_Adapter_Null(count($items))))
       ->setItemCountPerPage(max($items_by_page, 1))
diff --git a/public/opac/js/renderFilters/ajaxifyFilters.js b/public/opac/js/renderFilters/ajaxifyFilters.js
index 7f742be348c601835cbda6404a46475874008ffd..351d4370b6d7a5e8bafae852f0aaa4764eaffb3a 100644
--- a/public/opac/js/renderFilters/ajaxifyFilters.js
+++ b/public/opac/js/renderFilters/ajaxifyFilters.js
@@ -27,10 +27,10 @@
       var url = node.attr(url_attr); 
       
       if (!url)
-	      return event.preventDefault(); 
+	return event.preventDefault(); 
 
       if (url == "#") 
-	      url = node.jqmData("href");
+	url = node.jqmData("href");
       
       widget.load(url + "/render/ajax .boite > *", onLoadComplete); 
       event.preventDefault();
@@ -40,7 +40,9 @@
     var onLoadComplete = function() {
       if ('onLoadComplete' in options)
         options.onLoadComplete(widget);
-      
+
+      initializePopups();
+      setupAnchorsTarget();
       widget.ajaxifyFilters(options);
     };
 
diff --git a/tests/library/ZendAfi/View/Helper/Accueil/LibraryTest.php b/tests/library/ZendAfi/View/Helper/Accueil/LibraryTest.php
index 8267dae8d37f01798e5626598b4ee17447df2d56..d9972e11d634617f73df06825b171f2dc9c1f0c7 100644
--- a/tests/library/ZendAfi/View/Helper/Accueil/LibraryTest.php
+++ b/tests/library/ZendAfi/View/Helper/Accueil/LibraryTest.php
@@ -73,8 +73,10 @@ abstract class ZendAfi_View_Helper_Accueil_LibraryTestCase extends ViewHelperTes
                'division' => 2,
                'preferences' => $preferences];
 
+    $this->view->setScriptPath('application/modules/opac/views/scripts');
+
     $this->_helper = new ZendAfi_View_Helper_Accueil_Library(2, $params);
-    $this->_helper->setView(new ZendAfi_Controller_Action_Helper_View());
+    $this->_helper->setView($this->view);
 
     $this->html = $this->_helper->getBoite();
   }
@@ -197,16 +199,18 @@ class ZendAfi_View_Helper_Accueil_LibraryAlphaOrderDisplayTest extends ZendAfi_V
 
 
 
-class ZendAfi_View_Helper_Accueil_LibrarySelectionOrderDisplayTest extends ZendAfi_View_Helper_Accueil_LibraryTestCase {
+class ZendAfi_View_Helper_Accueil_LibrarySelectionOrderDisplayTest
+  extends ZendAfi_View_Helper_Accueil_LibraryTestCase {
+
   public function setUp() {
     parent::setUp();
 
-    Storm_Test_ObjectWrapper::onLoaderOfModel('Class_Bib')
-      ->whenCalled('findAllBy')
-      ->with(['id_site' => ['4', '1', '2'],
-              'order' => 'FIELD (id_site, 4,1,2)'])
-      ->answers([$this->meythet, $this->annecy, $this->cran])
-      ->beStrict();
+    $this->onLoaderOfModel('Class_Bib')
+         ->whenCalled('findAllBy')
+         ->with(['id_site' => ['4', '1', '2'],
+                 'order' => 'FIELD (id_site, 4,1,2)'])
+         ->answers([$this->meythet, $this->annecy, $this->cran])
+         ->beStrict();
 
     $this->_generateLibrary(['titre' => 'Bibliotheques',
                              'libraries' => '4;1;2',
@@ -283,7 +287,8 @@ class ZendAfi_View_Helper_Accueil_LibraryFieldsDisplayTest extends ZendAfi_View_
 
 
 
-class ZendAfi_View_Helper_Accueil_LibraryCustomFieldsDisplayTest extends ZendAfi_View_Helper_Accueil_LibraryTestCase {
+class ZendAfi_View_Helper_Accueil_LibraryCustomFieldsDisplayTest
+  extends ZendAfi_View_Helper_Accueil_LibraryTestCase {
 
   public function setUp() {
     parent::setUp();
@@ -362,3 +367,23 @@ class ZendAfi_View_Helper_Accueil_LibraryCustomFieldsDisplayTest extends ZendAfi
                           $js);
   }
 }
+
+
+
+
+class ZendAfi_View_Helper_Accueil_LibraryPaginatorTest
+  extends ZendAfi_View_Helper_Accueil_LibraryTestCase {
+
+  public function setUp() {
+    parent::setUp();
+    $this->_generateLibrary(['titre' => 'Bibliotheques',
+                             'libraries' => '4;1;2',
+                             'nb_aff' => 1]);
+  }
+
+
+  /** @test */
+  public function linkToPage2ShouldBeRenderAjax() {
+    $this->assertXPathContentContains($this->html, '//div[@class="paginationControl"]//a[contains(@href, "/render/ajax")]', '2');
+  }
+}