feature: visitors counter shows now user browser, and also if its bot

This commit is contained in:
slawkens
2023-02-17 18:41:25 +01:00
parent 6785ecad1d
commit a98cb66c53
7 changed files with 49 additions and 12 deletions

4
system/migrations/34.php Normal file
View File

@@ -0,0 +1,4 @@
<?php
// add user_agent column into visitors
$db->exec('ALTER TABLE `' . TABLE_PREFIX . "visitors` ADD `user_agent` VARCHAR(255) NOT NULL DEFAULT '';");