| 117 | | $relLbl .= " [<a "."title=\"$cnt ". ($cnt > 1 ? __('items') : __('item'))." ". ($cnt > 1 || $cnt == 0 ? __('tagged') : __('tagged'))." '".$hrTag." ".__('and')." $rtag'\" "."href=\"".getPath()."". (getConfig('rss.output.usemodrewrite') ? "tag/$rtag" : "tags.php?tag=$rtag").""."+".$urlTag."\">+</a>]"; |
| | 118 | $relLbl .= sprintf( |
| | 119 | ' [<a title="%d %s %s \'%s %s %s"\' href="%s+%s">+</a>]', |
| | 120 | $cnt, |
| | 121 | $cnt > 1 ? __('items') : __('item'), |
| | 122 | $cnt > 1 || $cnt == 0 ? __('tagged') : __('tagged'), |
| | 123 | htmlspecialchars($hrTag,ENT_QUOTES), |
| | 124 | __('and'), |
| | 125 | htmlspecialchars($rtag,ENT_QUOTES), |
| | 126 | getPath(getConfig('rss.output.usemodrewrite') ? "tag/$rtag" : "tags.php?tag=$rtag"), |
| | 127 | htmlspecialchars($urlTag,ENT_QUOTES) |
| | 128 | ); |
| | 129 | |
| | 130 | " [<a "."title=\"$cnt " |
| | 131 | . ($cnt > 1 ? __('items') : __('item'))." ". ($cnt > 1 || $cnt == 0 ? __('tagged') : __('tagged'))." '" |
| | 132 | .htmlspecialchars($hrTag,ENT_QUOTES)." ".__('and')." ".htmlspecialchars($rtag,ENT_QUOTES)."'\" " |
| | 133 | ."href=\"".getPath()."" |
| | 134 | . (getConfig('rss.output.usemodrewrite') ? "tag/$rtag" : "tags.php?tag=$rtag")."" |
| | 135 | ."+".$urlTag."\">+</a>]"; |