Fix php unit

This commit is contained in:
Laurent Destailleur 2017-08-23 19:38:06 +02:00
parent 90afbcb034
commit 9f5718f00a

View File

@ -306,11 +306,11 @@ class DolistoreModel
function get_previous_link($text = '<<') function get_previous_link($text = '<<')
{ {
return "<a href='".$this->get_previous_url()."' class='button'>$text</a>"; return '<a href="'.$this->get_previous_url().'" class="button">'.$text.'</a>';
} }
function get_next_link($text = '>>') function get_next_link($text = '>>')
{ {
return "<a href='".$this->get_next_url()."' class='button'>$text</a>"; return '<a href="'.$this->get_next_url().'" class="button">'.$text.'</a>';
} }
} }