Account actions rework on ip (Use single column for IP - VARCHAR(45)) (#289)

* Account actions rework on ip (Use single column for IP - VARCHAR(45))

* No foreach needed here
This commit is contained in:
Slawomir Boczek
2025-03-09 21:18:12 +01:00
committed by GitHub
parent 3c1210fefa
commit 7312383f73
7 changed files with 45 additions and 30 deletions

View File

@@ -27,7 +27,7 @@ if (version_compare(phpversion(), '8.1', '<')) die('PHP version 8.1 or higher is
const MYAAC = true;
const MYAAC_VERSION = '1.2';
const DATABASE_VERSION = 43;
const DATABASE_VERSION = 44;
const TABLE_PREFIX = 'myaac_';
define('START_TIME', microtime(true));
define('MYAAC_OS', stripos(PHP_OS, 'WIN') === 0 ? 'WINDOWS' : (strtoupper(PHP_OS) === 'DARWIN' ? 'MAC' : 'LINUX'));