summaryrefslogtreecommitdiffstats
path: root/includes/class-giglogadmin-concert.php
Commit message (Collapse)AuthorAgeFilesLines
* bugfix: Return null if gig is not found by id.Harald Eilertsen2023-05-171-1/+14
| | | | | Also add some error logging if more than one concert is returned for the same id. Should never happen, but in case it will be logged.
* Add links + pagination to concerts table shortcode.Harald Eilertsen2023-03-071-0/+26
|
* Make sure limit and offset is actually used.Harald Eilertsen2023-01-291-10/+2
|
* Fix concert limit/offset queries.Harald Eilertsen2023-01-291-4/+5
| | | | | | | | - offset and limit were sensitive to the order in which they were added, and would be reversed if added in the wrong order. That was a bit confusing. - offset and limit were not sanitized, so they were a vector for SQL injecion. Fixed that now.
* Rename recperpage to limit.Harald Eilertsen2023-01-291-1/+1
|
* Use DateTimeImmutable for concert date/time.Harald Eilertsen2023-01-281-6/+6
|
* Rename and restructure source files to conform to common namin schemes.Harald Eilertsen2023-01-191-0/+428
- Source files containing a class should only contain _one_ class. - Source files containing a class should be names class-[name of the class].php - Use dashes instead of underscores in file names. - Fix source file comments - Some nitpicking...