Block a user
fix3_next_available_episode
fix2_next_available_episode
Computation of days to next free slot is incorrect on index page
Computation of days to next free slot is incorrect on index page
Tested this and the MySQL variant, and the change seems to solve the problem.
The last_year
, last_month
and last_month
fields are used in content-index.tpl.html
to compute the number of…
Fixing days to next free slot
Fixing days to next free slot
Computation of days to next free slot is incorrect on index page
The first draft of a replacement query is this:
WITH next_id AS (
SELECT id, id + 1 AS id_next, date as last_date
FROM eps
WHERE eps.date > date('now')
),
free_slot AS (
…
Computation of days to next free slot is incorrect on index page
The original query was as followed (slightly edited for testing):
WITH next_id AS (
SELECT id, id + 1 AS id_next, date as last_date
FROM eps
WHERE eps.date > date('now')
)
SE…
Relative links aren't working on "Stuff you need to know" page
I still don't get the full-stop link. In order to click it you have to have the header it's attached to on the page. Clicking it leaves you where you already are! OK, it might shift the page so…
Computation of days to next free slot is incorrect on index page