Bug #13341
Page is linked even if it is the current page
| Status: | New | Start date: | 2011-02-24 | |
|---|---|---|---|---|
| Priority: | Must have | Due date: | ||
| Assignee: | - | % Done: | 0% |
|
| Category: | - | Spent time: | - | |
| Target version: | - | |||
| Votes: | 0 |
Description
Near line 545, the following code :
if ($linkPage !== $page || empty($ts['doNotLinkIt'])) {
// generate the uri to the page
$uri = $this->uriBuilder
must be replaced by :
if ($linkPage !== $page && empty($ts['doNotLinkIt'])) {
// generate the uri to the page
$uri = $this->uriBuilder