Skip to content
Snippets Groups Projects
Commit 3e14a9a2 authored by Patrick Barroca's avatar Patrick Barroca :grin:
Browse files

rel #21425 : fix tests

parent 66078fd0
Branches
Tags
4 merge requests!896Master,!893Master,!885Dev#21425 user comments by domains,!871Dev#21425 user comments by domains
<?php
echo $this->publicListViewMode(
$this->list,
function($item) { return $this->avis($item); }
function($item) {
return $this->getHelper('avis')
->addUrlContext([$this->list->getStartKey() => null])
->avis($item);
}
);?>
......@@ -192,7 +192,7 @@ class ZendAfi_View_Helper_Avis extends ZendAfi_View_Helper_BaseHelper {
/** @params parts array*/
public function _url($parts) {
return $this->view->url(array_merge($parts, $this->_url_context), null, true);
return $this->view->url(array_merge($parts, $this->_url_context));
}
......
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