mirror of
https://github.com/standardebooks/web.git
synced 2025-07-06 06:40:33 -04:00
12 lines
285 B
PHP
Executable file
12 lines
285 B
PHP
Executable file
#!/usr/bin/php
|
|
<?
|
|
require_once('/standardebooks.org/web/lib/Core.php');
|
|
|
|
// Delete unconfirmed newsletter subscribers who are more than a week old
|
|
Db::Query('
|
|
DELETE
|
|
from NewsletterSubscriptions
|
|
where IsConfirmed = false
|
|
and datediff(utc_timestamp(), Created) >= 7
|
|
');
|
|
?>
|