Skip to content
Snippets Groups Projects
Commit dfa991df authored by Ghislain Loas's avatar Ghislain Loas
Browse files

hotline #27962 sito viewCat : keep id cat in search form

parent 5fd66ddb
Branches
Tags
8 merge requests!1553Master,!1502Master,!1501Stable,!1472Stable,!1397Master,!1396Hotline master,!1388Hotline master,!1385Hotline#27962 sito viewcat keep id cat in search form
- ticket #27962 : Filtre dans le parcours hiérarchique des sitothèques : renvoie tout quand on filtre sur rien
\ No newline at end of file
......@@ -80,7 +80,7 @@ class ZendAfi_Controller_Action_Helper_SitothequeListViewMode extends ZendAfi_Co
public function getSearchUrl() {
return parent::getSearchUrl() + ['start_cat' => $this->getRequestParam('start_cat')];
return parent::getSearchUrl() + ['id_cat' => $this->getRequestParam('id_cat')] + ['start_cat' => $this->getRequestParam('start_cat')];
}
......
......@@ -469,4 +469,20 @@ class SitoControllerPaginationTest extends SitoControllerTestCase {
$this->assertXPathContentContains('//div[@class="paginationControl"]//span[@class="disabled"]', 'Suivant', $this->_response->getBody());
}
}
class SitoControllerViewCategorypostDispatchTest extends SitoControllerViewCategoryTestCase {
public function setup() {
parent::setUp();
$this->postDispatch('/sito/viewcategory/id_cat/12/start_cat/12', ['title_search' => 'pomme']);
}
/** @test */
public function searchFormShouldContainsIdCat12() {
$this->assertXPath('//div/form[contains(@action, "sito/viewcategory/id_cat/12/start_cat/12")]');
}
}
?>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment