This commit is contained in:
Lizandro Guarnizo
2026-01-21 23:55:49 -05:00
parent a70b8f36b5
commit ee016d62f5
5 changed files with 200 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
<?php
require_once __DIR__ . '/../config/config.php';
$db = Database::getInstance();
$t = $db->fetch('SELECT id, name FROM message_templates LIMIT 1');
if (!$t) { echo "No templates found\n"; exit(1); }
print_r($t);