Skip to content

Commit

Permalink
missed db in FROM clause in purge.php
Browse files Browse the repository at this point in the history
  • Loading branch information
bbannon authored May 14, 2024
1 parent 853c8dd commit 9c7f121
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion purge.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
$M_ids = get_ids ( 'SELECT DISTINCT(we.cal_id) FROM webcal_entry we,
webcal_entry_user weu, webcal_entry_repeats wer
WHERE we.cal_type = \'M\'
AND we.cal_id = wer.cal_id AND we.cal_id = wer.cal_id '
AND we.cal_id = wer.cal_id AND weu.cal_id = wer.cal_id '
. "AND cal_end IS NOT NULL AND cal_end < '$end_date' $tail",
$ALL );
$ids = array_merge ( $E_ids, $M_ids );
Expand Down

0 comments on commit 9c7f121

Please sign in to comment.