aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/front/controller/admin/ManageTagController.php
Commit message (Collapse)AuthorAgeFilesLines
* Handle pagination through BookmarkServiceArthurHoaro2021-01-201-4/+7
| | | | | | | Handle all search results through SearchResult object. This is a required step toward implementing a BookmarkService based on SQL database. Related to #953
* Apply PHP Code Beautifier on source code for linter automatic fixesArthurHoaro2020-11-091-2/+2
|
* Feature: support any tag separatorArthurHoaro2020-11-051-0/+33
| | | | | | | | So it allows to have multiple words tags. Breaking change: commas ',' are no longer a default separator. Fixes #594
* Security: fix multiple XSS vulnerabilities + fix search tags with special charsArthurHoaro2020-10-061-2/+2
| | | | | | XSS vulnerabilities fixed in editlink, linklist, tag.cloud and tag.list. Also fixed tag search with special characters: urlencode function needs to be applied on raw data, before espaping, otherwise the rendered URL is wrong.
* Process main page (linklist) through Slim controllerArthurHoaro2020-07-231-1/+2
| | | | | Including a bunch of improvements on the container, and helper used across new controllers.
* Use multi-level routes for existing controllers instead of 1 level everywhereArthurHoaro2020-07-231-5/+5
| | | | Also prefix most admin routes with /admin/
* Process manage tags page through Slim controllerArthurHoaro2020-07-231-0/+87