update to 0.1.5

fixed bug with "Integrity constraint violation: 1048 Column 'ip' cannot
be null"
This commit is contained in:
slawkens1
2017-05-13 22:43:14 +02:00
parent 449ce31ab4
commit 7b23ffaf23
73 changed files with 103 additions and 81 deletions

View File

@@ -21,14 +21,14 @@
* @package MyAAC
* @author Slawkens <slawkens@gmail.com>
* @copyright 2017 MyAAC
* @version 0.1.3
* @version 0.1.5
* @link http://my-aac.org
*/
session_start();
define('MYAAC', true);
define('MYAAC_VERSION', '0.1.3');
define('DATABASE_VERSION', 2);
define('MYAAC_VERSION', '0.1.5');
define('DATABASE_VERSION', 3);
define('TABLE_PREFIX', 'myaac_');
define('START_TIME', microtime(true));
define('MYAAC_OS', (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') ? 'WINDOWS' : 'LINUX');