diff --git a/CHANGELOG b/CHANGELOG index 3af0c320..ca7b5bdb 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,15 @@ +[0.1.5 - 13.05.2017] + - fixed bug with "Integrity constraint violation: 1048 Column 'ip' cannot be null" + +[0.1.4 - 13.05.2017] + - added outfit shower, in characters, online, and highscores + - updated database to version 2 + - fixed item images (now using item-images.ots.me host by default) + - fixed news ticket and posting long newses (https://otland.net/threads/myaac-v0-0-1.251454/page-5#post-2442026) + - news body limit increased to 65535 (mysql text field) + - removed some unused code from my old server + - added spells & monsters to kathrine template + [0.1.3 - 11.05.2017] - this is just release to update version number diff --git a/common.php b/common.php index 43fdbc09..28a037dd 100644 --- a/common.php +++ b/common.php @@ -21,14 +21,14 @@ * @package MyAAC * @author Slawkens * @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'); diff --git a/config.php b/config.php index c0a159a6..071f55d8 100644 --- a/config.php +++ b/config.php @@ -13,7 +13,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ diff --git a/index.php b/index.php index 2a1dd32c..b8de5833 100644 --- a/index.php +++ b/index.php @@ -21,7 +21,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ @@ -68,8 +68,11 @@ if(fetchDatabaseConfig('database_version', $tmp)) { // we got version } } else { // register first version - require(SYSTEM . 'migrations/1.php'); - registerDatabaseConfig('database_version', 1); + for($i = 1; $i <= DATABASE_VERSION; $i++) { + require(SYSTEM . 'migrations/' . $i . '.php'); + } + + updateDatabaseConfig('database_version', DATABASE_VERSION); } // event system diff --git a/system/compat_pages.php b/system/compat_pages.php index 9d0c3f49..002937ac 100644 --- a/system/compat_pages.php +++ b/system/compat_pages.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/counter.php b/system/counter.php index b0ba7eaf..afecf952 100644 --- a/system/counter.php +++ b/system/counter.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/countries.conf.php b/system/countries.conf.php index 4241d225..4c862b71 100644 --- a/system/countries.conf.php +++ b/system/countries.conf.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/functions.php b/system/functions.php index e5748e2c..97209316 100644 --- a/system/functions.php +++ b/system/functions.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/hooks.php b/system/hooks.php index bf9d0fc8..3c4aa8ae 100644 --- a/system/hooks.php +++ b/system/hooks.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/init.php b/system/init.php index af9504c3..69425daa 100644 --- a/system/init.php +++ b/system/init.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/item.php b/system/item.php index 80b76f93..239818d2 100644 --- a/system/item.php +++ b/system/item.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/libs/cache.php b/system/libs/cache.php index d00c7b2d..ed9c2a82 100644 --- a/system/libs/cache.php +++ b/system/libs/cache.php @@ -6,7 +6,7 @@ * @author Slawkens * @author Mark Samman (Talaturen) * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/libs/cache_apc.php b/system/libs/cache_apc.php index 8a35b5cf..f8610424 100644 --- a/system/libs/cache_apc.php +++ b/system/libs/cache_apc.php @@ -6,7 +6,7 @@ * @author Slawkens * @author Mark Samman (Talaturen) * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/libs/cache_eaccelerator.php b/system/libs/cache_eaccelerator.php index 899bf03f..f38ebd28 100644 --- a/system/libs/cache_eaccelerator.php +++ b/system/libs/cache_eaccelerator.php @@ -6,7 +6,7 @@ * @author Slawkens * @author Mark Samman (Talaturen) * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/libs/cache_file.php b/system/libs/cache_file.php index c875980d..e652b04e 100644 --- a/system/libs/cache_file.php +++ b/system/libs/cache_file.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/libs/cache_xcache.php b/system/libs/cache_xcache.php index 93b0ff35..41bef5cb 100644 --- a/system/libs/cache_xcache.php +++ b/system/libs/cache_xcache.php @@ -6,7 +6,7 @@ * @author Slawkens * @author Mark Samman (Talaturen) * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/libs/data.php b/system/libs/data.php index 591edb4f..015fb914 100644 --- a/system/libs/data.php +++ b/system/libs/data.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/libs/items.php b/system/libs/items.php index db8bae6a..fdae4b5c 100644 --- a/system/libs/items.php +++ b/system/libs/items.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/libs/pot/OTS_Account.php b/system/libs/pot/OTS_Account.php index 08f858bf..a94e1508 100644 --- a/system/libs/pot/OTS_Account.php +++ b/system/libs/pot/OTS_Account.php @@ -908,7 +908,7 @@ class OTS_Account extends OTS_Row_DAO implements IteratorAggregate, Countable public function logAction($action) { - $ip = '127.0.0.1'; + $ip = '0'; if(isset($_SERVER['REMOTE_ADDR']) && !empty($_SERVER['REMOTE_ADDR'])) $ip = $_SERVER['REMOTE_ADDR']; else if(isset($_SERVER['HTTP_CLIENT_IP']) && !empty($_SERVER['HTTP_CLIENT_IP'])) @@ -916,18 +916,23 @@ class OTS_Account extends OTS_Row_DAO implements IteratorAggregate, Countable else if(isset($_SERVER['HTTP_X_FORWARDED_FOR']) && !empty($_SERVER['HTTP_X_FORWARDED_FOR'])) $ip = $_SERVER['HTTP_X_FORWARDED_FOR']; - if($ip == NULL) - $ip = '0'; + if(strpos($ip, ":") === false) { + $ipv6 = '0'; + } + else { + $ipv6 = $ip; + $ip = ''; + } - return $this->db->query('INSERT INTO ' . $this->db->tableName(TABLE_PREFIX . 'account_actions') . ' (' . $this->db->fieldName('account_id') . ', ' . $this->db->fieldName('ip') . ', ' . $this->db->fieldName('date') . ', ' . $this->db->fieldName('action') . ') VALUES (' . $this->db->quote($this->getId()).', INET_ATON(' . $this->db->quote($ip) . '), UNIX_TIMESTAMP(NOW()), ' . $this->db->quote($action).')'); + return $this->db->query('INSERT INTO `' . TABLE_PREFIX . 'account_actions` (`account_id`, `ip`, `ipv6`, `date`, `action`) VALUES (' . $this->db->quote($this->getId()).', (' . $this->db->quote(ip2long($ip)) . '), (' . ($ipv6 == '0' ? $this->db->quote('') : $this->db->quote(inet_pton($ipv6))) . '), UNIX_TIMESTAMP(NOW()), ' . $this->db->quote($action).')'); } public function getActionsLog($limit1, $limit2) { $actions = array(); - foreach($this->db->query('SELECT ' . $this->db->fieldName('ip') . ', ' . $this->db->fieldName('date') . ', ' . $this->db->fieldName('action') . ' FROM ' . $this->db->tableName(TABLE_PREFIX . 'account_actions') . ' WHERE ' . $this->db->fieldName('account_id') . ' = ' . $this->data['id'] . ' ORDER by ' . $this->db->fieldName('date') . ' DESC LIMIT ' . $limit1 . ', ' . $limit2 . '')->fetchAll() as $a) - $actions[] = array('ip' => $a['ip'], 'date' => $a['date'], 'action' => $a['action']); + foreach($this->db->query('SELECT `ip`, `ipv6`, `date`, `action` FROM `' . TABLE_PREFIX . 'account_actions` WHERE `account_id` = ' . $this->data['id'] . ' ORDER by `date` DESC LIMIT ' . $limit1 . ', ' . $limit2 . '')->fetchAll() as $a) + $actions[] = array('ip' => $a['ip'], 'ipv6' => $a['ipv6'], 'date' => $a['date'], 'action' => $a['action']); return $actions; } diff --git a/system/libs/timer.php b/system/libs/timer.php index aba072c4..a1165f86 100644 --- a/system/libs/timer.php +++ b/system/libs/timer.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/libs/validator.php b/system/libs/validator.php index f9569fe5..3721933d 100644 --- a/system/libs/validator.php +++ b/system/libs/validator.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/libs/visitors.php b/system/libs/visitors.php index d8e989af..4f03fed1 100644 --- a/system/libs/visitors.php +++ b/system/libs/visitors.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/login.php b/system/login.php index 29e39357..efd47e04 100644 --- a/system/login.php +++ b/system/login.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/migrations/3.php b/system/migrations/3.php new file mode 100644 index 00000000..76c0acc8 --- /dev/null +++ b/system/migrations/3.php @@ -0,0 +1,3 @@ +query("ALTER TABLE `" . TABLE_PREFIX . "account_actions` ADD `ipv6` BINARY(16) NOT NULL DEFAULT 0;"); +?> \ No newline at end of file diff --git a/system/pages/404.php b/system/pages/404.php index 46325934..45f93a3e 100644 --- a/system/pages/404.php +++ b/system/pages/404.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/account.php b/system/pages/account.php index b379068b..7e58a4ce 100644 --- a/system/pages/account.php +++ b/system/pages/account.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/accountmanagement.php b/system/pages/accountmanagement.php index 8f32126a..30b3e586 100644 --- a/system/pages/accountmanagement.php +++ b/system/pages/accountmanagement.php @@ -6,7 +6,7 @@ * @author Gesior * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); @@ -248,7 +248,7 @@ Please enter your account name and your password.
'.$action['action'] . '' . date("jS F Y H:i:s",$action['date']) . ' - ' . long2ip($action['ip']) . ''; + ' . ($action['ip'] != 0 ? long2ip($action['ip']) : inet_ntop($action['ipv6'])) . ''; } echo ' diff --git a/system/pages/admin/changelog.php b/system/pages/admin/changelog.php index ac8a0f22..ec449aac 100644 --- a/system/pages/admin/changelog.php +++ b/system/pages/admin/changelog.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/admin/dashboard.php b/system/pages/admin/dashboard.php index 70122e2c..ecf21906 100644 --- a/system/pages/admin/dashboard.php +++ b/system/pages/admin/dashboard.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/admin/login.php b/system/pages/admin/login.php index 0915ea8b..f72d982e 100644 --- a/system/pages/admin/login.php +++ b/system/pages/admin/login.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/admin/logs.php b/system/pages/admin/logs.php index c08d3386..674586a5 100644 --- a/system/pages/admin/logs.php +++ b/system/pages/admin/logs.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/admin/mailer.php b/system/pages/admin/mailer.php index 3548e80d..19788d46 100644 --- a/system/pages/admin/mailer.php +++ b/system/pages/admin/mailer.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/admin/notepad.php b/system/pages/admin/notepad.php index 1eeda365..d93ba51a 100644 --- a/system/pages/admin/notepad.php +++ b/system/pages/admin/notepad.php @@ -5,7 +5,6 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/admin/pages.php b/system/pages/admin/pages.php index e4417066..5adeafa5 100644 --- a/system/pages/admin/pages.php +++ b/system/pages/admin/pages.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/admin/phpinfo.php b/system/pages/admin/phpinfo.php index 07f8ce0b..344b62c6 100644 --- a/system/pages/admin/phpinfo.php +++ b/system/pages/admin/phpinfo.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/admin/players.php b/system/pages/admin/players.php index 97361921..6235e010 100644 --- a/system/pages/admin/players.php +++ b/system/pages/admin/players.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/admin/plugins.php b/system/pages/admin/plugins.php index f9c142e7..348dafc5 100644 --- a/system/pages/admin/plugins.php +++ b/system/pages/admin/plugins.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/admin/statistics.php b/system/pages/admin/statistics.php index 95d9427b..01c6c845 100644 --- a/system/pages/admin/statistics.php +++ b/system/pages/admin/statistics.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/admin/tools.php b/system/pages/admin/tools.php index 495d59ef..a7c47966 100644 --- a/system/pages/admin/tools.php +++ b/system/pages/admin/tools.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/admin/version.php b/system/pages/admin/version.php index 5c45eed6..27028f7c 100644 --- a/system/pages/admin/version.php +++ b/system/pages/admin/version.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/admin/visitors.php b/system/pages/admin/visitors.php index dd1ea953..6b9ed613 100644 --- a/system/pages/admin/visitors.php +++ b/system/pages/admin/visitors.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/bans.php b/system/pages/bans.php index 4c21578d..e7ddcb27 100644 --- a/system/pages/bans.php +++ b/system/pages/bans.php @@ -6,7 +6,7 @@ * @author Gesior * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/bugtracker.php b/system/pages/bugtracker.php index 6e0650f1..ffc40ae8 100644 --- a/system/pages/bugtracker.php +++ b/system/pages/bugtracker.php @@ -6,7 +6,7 @@ * @author Gesior * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/changelog.php b/system/pages/changelog.php index 1a2b6c07..7717270a 100644 --- a/system/pages/changelog.php +++ b/system/pages/changelog.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/characters.php b/system/pages/characters.php index ee982b1c..e1c52fb8 100644 --- a/system/pages/characters.php +++ b/system/pages/characters.php @@ -6,7 +6,7 @@ * @author Gesior * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/commands.php b/system/pages/commands.php index 5bcce33f..ffa6bd40 100644 --- a/system/pages/commands.php +++ b/system/pages/commands.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/createaccount.php b/system/pages/createaccount.php index 7fb9f8ac..1c6428c2 100644 --- a/system/pages/createaccount.php +++ b/system/pages/createaccount.php @@ -6,7 +6,7 @@ * @author Gesior * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/creatures.php b/system/pages/creatures.php index da6b9ce0..93607245 100644 --- a/system/pages/creatures.php +++ b/system/pages/creatures.php @@ -6,7 +6,7 @@ * @author Gesior * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/custom.php b/system/pages/custom.php index 3900c86c..eac0b38d 100644 --- a/system/pages/custom.php +++ b/system/pages/custom.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/downloads.php b/system/pages/downloads.php index 428100ae..4c677630 100644 --- a/system/pages/downloads.php +++ b/system/pages/downloads.php @@ -6,7 +6,7 @@ * @author Gesior * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ $title = 'Downloads'; diff --git a/system/pages/experiencestages.php b/system/pages/experiencestages.php index 7c9a7e4b..4e3c9f17 100644 --- a/system/pages/experiencestages.php +++ b/system/pages/experiencestages.php @@ -6,7 +6,7 @@ * @author Gesior * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/experiencetable.php b/system/pages/experiencetable.php index a071cce8..fca7f239 100644 --- a/system/pages/experiencetable.php +++ b/system/pages/experiencetable.php @@ -6,7 +6,7 @@ * @author Gesior * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/faq.php b/system/pages/faq.php index b5ecb0fd..94348a57 100644 --- a/system/pages/faq.php +++ b/system/pages/faq.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/forum.php b/system/pages/forum.php index 79d8ea7b..ca4fc8a5 100644 --- a/system/pages/forum.php +++ b/system/pages/forum.php @@ -6,7 +6,7 @@ * @author Gesior * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/guilds.php b/system/pages/guilds.php index 9585cb16..57bc5ef8 100644 --- a/system/pages/guilds.php +++ b/system/pages/guilds.php @@ -6,7 +6,7 @@ * @author Gesior * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/highscores.php b/system/pages/highscores.php index 660a8c71..5424c5c0 100644 --- a/system/pages/highscores.php +++ b/system/pages/highscores.php @@ -6,7 +6,7 @@ * @author Gesior * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/houses.php b/system/pages/houses.php index 527b2253..ece691ea 100644 --- a/system/pages/houses.php +++ b/system/pages/houses.php @@ -6,7 +6,7 @@ * @author Gesior * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/lastkills.php b/system/pages/lastkills.php index 214d15cd..0ea05048 100644 --- a/system/pages/lastkills.php +++ b/system/pages/lastkills.php @@ -6,7 +6,7 @@ * @author Gesior * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/lostaccount.php b/system/pages/lostaccount.php index c9fb13f0..5f4d4382 100644 --- a/system/pages/lostaccount.php +++ b/system/pages/lostaccount.php @@ -6,7 +6,7 @@ * @author Gesior * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/movies.php b/system/pages/movies.php index f681ec8b..604e61d9 100644 --- a/system/pages/movies.php +++ b/system/pages/movies.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/news.php b/system/pages/news.php index 81d14512..967e2943 100644 --- a/system/pages/news.php +++ b/system/pages/news.php @@ -6,7 +6,7 @@ * @author Gesior * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/newsarchive.php b/system/pages/newsarchive.php index bfdc3416..806a8cea 100644 --- a/system/pages/newsarchive.php +++ b/system/pages/newsarchive.php @@ -6,7 +6,7 @@ * @author Gesior * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ $_GET['archive'] = true; diff --git a/system/pages/online.php b/system/pages/online.php index cd70c5bc..7fd3784a 100644 --- a/system/pages/online.php +++ b/system/pages/online.php @@ -6,7 +6,7 @@ * @author Gesior * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/polls.php b/system/pages/polls.php index f146b4e9..c5b9eacd 100644 --- a/system/pages/polls.php +++ b/system/pages/polls.php @@ -6,7 +6,7 @@ * @author Averatec * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/records.php b/system/pages/records.php index 0c18a3dd..48a5d273 100644 --- a/system/pages/records.php +++ b/system/pages/records.php @@ -6,7 +6,7 @@ * @author Gesior * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/rules.php b/system/pages/rules.php index c0cf483e..c9126497 100644 --- a/system/pages/rules.php +++ b/system/pages/rules.php @@ -6,7 +6,7 @@ * @author Gesior * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/screenshots.php b/system/pages/screenshots.php index 587594a1..df67501f 100644 --- a/system/pages/screenshots.php +++ b/system/pages/screenshots.php @@ -6,7 +6,7 @@ * @author Gesior * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/serverinfo.php b/system/pages/serverinfo.php index 67666884..135ab79d 100644 --- a/system/pages/serverinfo.php +++ b/system/pages/serverinfo.php @@ -6,7 +6,7 @@ * @author Gesior * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/spells.php b/system/pages/spells.php index 45c98e54..0f39b44a 100644 --- a/system/pages/spells.php +++ b/system/pages/spells.php @@ -6,7 +6,7 @@ * @author Gesior * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/team.php b/system/pages/team.php index a9bca056..11c9c510 100644 --- a/system/pages/team.php +++ b/system/pages/team.php @@ -6,7 +6,7 @@ * @author Gesior * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/status.php b/system/status.php index f7355538..95b4c156 100644 --- a/system/status.php +++ b/system/status.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/template.php b/system/template.php index 6b3d47ff..bf9f91af 100644 --- a/system/template.php +++ b/system/template.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Slawkens * @copyright 2017 MyAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/tools/validate.php b/tools/validate.php index fedd3aa6..f3f3dae1 100644 --- a/tools/validate.php +++ b/tools/validate.php @@ -6,7 +6,7 @@ * @package MyAAC * @author Slawkens * @copyright 2016 WodzAAC - * @version 0.1.3 + * @version 0.1.5 * @link http://myaac.info */