Initial commit

This commit is contained in:
Porawit Dongwang
2026-09-16 23:20:08 +07:00
commit 0041668dbb
32577 changed files with 3687927 additions and 0 deletions
@@ -0,0 +1,7 @@
<?php
// Just write a patch to change to single quotes for all queries in AgentController
$content = file_get_contents('src/Controllers/AgentController.php');
$content = str_replace('LIKE \'%\"EventID\":\"3\"%\'', 'LIKE \'%EventID":"3%\'', $content); // wait, that caused syntax error before
// Instead, I will replace the double quotes in PHP with single quotes for the SQL statement
// But that's complicated to str_replace.