mirror of
https://github.com/sigmasternchen/mobmash.click
synced 2025-03-16 08:39:04 +00:00
12 lines
No EOL
265 B
PHP
12 lines
No EOL
265 B
PHP
<?php
|
|
|
|
require_once __DIR__ . "/../../core.php";
|
|
require_once __DIR__ . "/../../lib/housekeeping.php";
|
|
|
|
echo "Removing old session IDs from match table...";
|
|
removeOldSessionIDs();
|
|
|
|
echo "Removing old audit logs...";
|
|
removeOldAuditLogs();
|
|
|
|
echo "Housekeeping done."; |