diff --git a/CHANGELOG b/CHANGELOG
index c7a1c4fc..7bc538a5 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,26 @@
+[0.6.0 - 16.10.2017]
+ - added faq management - add/edit/move/hide/delete from website
+ - new account.login view for tibiacom template
+ - monsters and spells are now being loaded at the installation of the AAC
+ - fix for php versions under 5.5 where empty() function supported only variables
+ - added missing change email and change info buttons to account.management default template
+ - added new indicator icons for create account, create character and change character name
+ - fixed config loader when some inline comments are present
+ - fixed editing page in admin panel that contains some html code
+ - fixed forum new post on mac os and some specific mysql versions
+ - attempt to fix incorrect views counter behavior (its resetting to 0 in some cases)
+ - enabled cache http headers for signatures
+ - check if monster file exist before loading it
+ - fixed if plugin zip file name contains dot (.)
+ - renamed screenshots to gallery and movies to videos
+ - moved install pages to twig
+ - fixed Account::getGuildAccess function
+ - removed never used library from sources - dwoo
+ - moved check_* functions to class Validator
+ - from now all validators ajax requests will fire onblur instead of onkeyup
+ - ajax requests returns now json instead of xml
+ - added 404 response when file is not found
+
[0.5.1 - 11.10.2017]
- fixed forum add/edit board
- new configurable: highscores_length, how much highscores to display
diff --git a/admin/index.php b/admin/index.php
index 6802f6d3..65a73a64 100644
--- a/admin/index.php
+++ b/admin/index.php
@@ -9,6 +9,8 @@ if(file_exists(BASE . 'install') && (!isset($config['installed']) || !$config['i
die('Setup detected that install/ directory exists. Please visit this url to start MyAAC Installation.
Delete install/ directory if you already installed MyAAC.
Remember to REFRESH this page when you\'re done!');
}
+define('ADMIN_PANEL', true);
+
$content = '';
// validate page
diff --git a/common.php b/common.php
index 497862d2..3ae1b154 100644
--- a/common.php
+++ b/common.php
@@ -21,13 +21,13 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @link http://my-aac.org
*/
session_start();
define('MYAAC', true);
-define('MYAAC_VERSION', '0.5.1');
+define('MYAAC_VERSION', '0.6.0');
define('DATABASE_VERSION', 11);
define('TABLE_PREFIX', 'myaac_');
define('START_TIME', microtime(true));
diff --git a/config.php b/config.php
index bea8514f..2fb11e5d 100644
--- a/config.php
+++ b/config.php
@@ -13,7 +13,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @link http://my-aac.org
*/
diff --git a/index.php b/index.php
index e10e0a80..c38b030e 100644
--- a/index.php
+++ b/index.php
@@ -21,7 +21,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @link http://my-aac.org
*/
diff --git a/system/compat_pages.php b/system/compat_pages.php
index e6feb45c..f3dcaef8 100644
--- a/system/compat_pages.php
+++ b/system/compat_pages.php
@@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @link http://my-aac.org
*/
defined('MYAAC') or die('Direct access not allowed!');
diff --git a/system/counter.php b/system/counter.php
index bc469429..07777052 100644
--- a/system/counter.php
+++ b/system/counter.php
@@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 3e8ccc35..f54f1006 100644
--- a/system/countries.conf.php
+++ b/system/countries.conf.php
@@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @link http://my-aac.org
*/
defined('MYAAC') or die('Direct access not allowed!');
diff --git a/system/functions.php b/system/functions.php
index 4efa85c0..5c8593c0 100644
--- a/system/functions.php
+++ b/system/functions.php
@@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @link http://my-aac.org
*/
defined('MYAAC') or die('Direct access not allowed!');
diff --git a/system/hooks.php b/system/hooks.php
index f94aef21..f8d03e03 100644
--- a/system/hooks.php
+++ b/system/hooks.php
@@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @link http://my-aac.org
*/
defined('MYAAC') or die('Direct access not allowed!');
diff --git a/system/init.php b/system/init.php
index 7807cd18..b5bdffc4 100644
--- a/system/init.php
+++ b/system/init.php
@@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @link http://my-aac.org
*/
defined('MYAAC') or die('Direct access not allowed!');
diff --git a/system/item.php b/system/item.php
index b11ab691..bdd3a32d 100644
--- a/system/item.php
+++ b/system/item.php
@@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 94df8a00..9abea665 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.5.1
+ * @version 0.6.0
* @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 f8dda5fd..b316f00a 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.5.1
+ * @version 0.6.0
* @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 28e4658a..308987eb 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.5.1
+ * @version 0.6.0
* @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 ade6f7b9..c89f2576 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.5.1
+ * @version 0.6.0
* @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 2b9da83e..ae6c4ebf 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.5.1
+ * @version 0.6.0
* @link http://my-aac.org
*/
defined('MYAAC') or die('Direct access not allowed!');
diff --git a/system/libs/creatures.php b/system/libs/creatures.php
index d26cfcdf..00da2266 100644
--- a/system/libs/creatures.php
+++ b/system/libs/creatures.php
@@ -1,4 +1,15 @@
+ * @author Slawkens
+ * @copyright 2017 MyAAC
+ * @version 0.6.0
+ * @link http://my-aac.org
+ */
+defined('MYAAC') or die('Direct access not allowed!');
class Creatures {
public static function loadFromXML($show = false) {
diff --git a/system/libs/data.php b/system/libs/data.php
index f4008006..d6e4e7f1 100644
--- a/system/libs/data.php
+++ b/system/libs/data.php
@@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 6442fd74..5a740190 100644
--- a/system/libs/items.php
+++ b/system/libs/items.php
@@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @link http://my-aac.org
*/
defined('MYAAC') or die('Direct access not allowed!');
diff --git a/system/libs/spells.php b/system/libs/spells.php
index 35695a6d..43e7fb84 100644
--- a/system/libs/spells.php
+++ b/system/libs/spells.php
@@ -1,4 +1,16 @@
+ * @author Slawkens
+ * @copyright 2017 MyAAC
+ * @version 0.6.0
+ * @link http://my-aac.org
+ */
+defined('MYAAC') or die('Direct access not allowed!');
+
class Spells {
public static function loadFromXML($show = false) {
global $config, $db;
diff --git a/system/libs/timer.php b/system/libs/timer.php
index 40ae642e..b8ef6e57 100644
--- a/system/libs/timer.php
+++ b/system/libs/timer.php
@@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 025c4a8e..c364ac29 100644
--- a/system/libs/validator.php
+++ b/system/libs/validator.php
@@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 a6b0dd73..7d35b2d6 100644
--- a/system/libs/visitors.php
+++ b/system/libs/visitors.php
@@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @link http://my-aac.org
*/
defined('MYAAC') or die('Direct access not allowed!');
diff --git a/system/login.php b/system/login.php
index fe701c22..d5724446 100644
--- a/system/login.php
+++ b/system/login.php
@@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @link http://my-aac.org
*/
defined('MYAAC') or die('Direct access not allowed!');
diff --git a/system/pages/404.php b/system/pages/404.php
index c340890b..8681ccc4 100644
--- a/system/pages/404.php
+++ b/system/pages/404.php
@@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 7ec41ae4..1f0635d6 100644
--- a/system/pages/account.php
+++ b/system/pages/account.php
@@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 001a6f8e..d0af7a3f 100644
--- a/system/pages/accountmanagement.php
+++ b/system/pages/accountmanagement.php
@@ -6,7 +6,7 @@
* @author Gesior
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @link http://my-aac.org
*/
defined('MYAAC') or die('Direct access not allowed!');
diff --git a/system/pages/admin/changelog.php b/system/pages/admin/changelog.php
index a75d334c..83343288 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.5.1
+ * @version 0.6.0
* @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 6507ff37..ec31c327 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.5.1
+ * @version 0.6.0
* @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 8b3f6e37..1100f01d 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.5.1
+ * @version 0.6.0
* @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 4ab06bae..e3db2ac2 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.5.1
+ * @version 0.6.0
* @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 eab6e760..7313f857 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.5.1
+ * @version 0.6.0
* @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 5f20d62d..411c98ad 100644
--- a/system/pages/admin/notepad.php
+++ b/system/pages/admin/notepad.php
@@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 fd8ad3f7..a196b799 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.5.1
+ * @version 0.6.0
* @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 de8d25a2..0222ef60 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.5.1
+ * @version 0.6.0
* @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 ad9f17f0..0037912c 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.5.1
+ * @version 0.6.0
* @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 8d862957..8cdd9d14 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.5.1
+ * @version 0.6.0
* @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 ecdbdc01..17f6c802 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.5.1
+ * @version 0.6.0
* @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 8ff4a531..ac47444c 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.5.1
+ * @version 0.6.0
* @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 b9d208ca..b6fdd917 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.5.1
+ * @version 0.6.0
* @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 ce33aa0f..e66e8a03 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.5.1
+ * @version 0.6.0
* @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 d76230ac..04799ed7 100644
--- a/system/pages/bans.php
+++ b/system/pages/bans.php
@@ -6,7 +6,7 @@
* @author Gesior
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 c2af9400..51598119 100644
--- a/system/pages/bugtracker.php
+++ b/system/pages/bugtracker.php
@@ -6,7 +6,7 @@
* @author Gesior
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 b2f6903a..ec27a7fc 100644
--- a/system/pages/changelog.php
+++ b/system/pages/changelog.php
@@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 70078ab5..f98e76be 100644
--- a/system/pages/characters.php
+++ b/system/pages/characters.php
@@ -6,7 +6,7 @@
* @author Gesior
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 d6f5af7d..59f474cd 100644
--- a/system/pages/commands.php
+++ b/system/pages/commands.php
@@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 8e3c8a73..251dc698 100644
--- a/system/pages/createaccount.php
+++ b/system/pages/createaccount.php
@@ -6,7 +6,7 @@
* @author Gesior
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 9f9ea57f..5d3d0974 100644
--- a/system/pages/creatures.php
+++ b/system/pages/creatures.php
@@ -6,7 +6,7 @@
* @author Gesior
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 634caa2d..5c53d660 100644
--- a/system/pages/downloads.php
+++ b/system/pages/downloads.php
@@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @link http://my-aac.org
*/
$title = 'Downloads';
diff --git a/system/pages/experiencestages.php b/system/pages/experiencestages.php
index 214deb72..2d2861b0 100644
--- a/system/pages/experiencestages.php
+++ b/system/pages/experiencestages.php
@@ -6,7 +6,7 @@
* @author Gesior
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 6ded9f20..28c493de 100644
--- a/system/pages/experiencetable.php
+++ b/system/pages/experiencetable.php
@@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 185f8414..798abbe8 100644
--- a/system/pages/faq.php
+++ b/system/pages/faq.php
@@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 630de9a1..0203fecb 100644
--- a/system/pages/forum.php
+++ b/system/pages/forum.php
@@ -6,7 +6,7 @@
* @author Gesior
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @link http://my-aac.org
*/
defined('MYAAC') or die('Direct access not allowed!');
diff --git a/system/pages/gallery.php b/system/pages/gallery.php
index 8bd37d91..e8915140 100644
--- a/system/pages/gallery.php
+++ b/system/pages/gallery.php
@@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 766b9cf1..ecb0c4e5 100644
--- a/system/pages/guilds.php
+++ b/system/pages/guilds.php
@@ -6,7 +6,7 @@
* @author Gesior
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 19c73b40..a8f6aa9c 100644
--- a/system/pages/highscores.php
+++ b/system/pages/highscores.php
@@ -6,7 +6,7 @@
* @author Gesior
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 6536c604..47e518ca 100644
--- a/system/pages/houses.php
+++ b/system/pages/houses.php
@@ -6,7 +6,7 @@
* @author Gesior
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 2e11ca8d..c703f362 100644
--- a/system/pages/lastkills.php
+++ b/system/pages/lastkills.php
@@ -6,7 +6,7 @@
* @author Gesior
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 b066aaae..064ce724 100644
--- a/system/pages/lostaccount.php
+++ b/system/pages/lostaccount.php
@@ -6,7 +6,7 @@
* @author Gesior
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 0cbc0719..050f65f1 100644
--- a/system/pages/news.php
+++ b/system/pages/news.php
@@ -6,7 +6,7 @@
* @author Gesior
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 6bd4890b..d85ae17b 100644
--- a/system/pages/newsarchive.php
+++ b/system/pages/newsarchive.php
@@ -6,7 +6,7 @@
* @author Gesior
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @link http://my-aac.org
*/
$_GET['archive'] = true;
diff --git a/system/pages/online.php b/system/pages/online.php
index 28ef2ac6..af639992 100644
--- a/system/pages/online.php
+++ b/system/pages/online.php
@@ -6,7 +6,7 @@
* @author Gesior
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 5c05f2ac..f92af295 100644
--- a/system/pages/polls.php
+++ b/system/pages/polls.php
@@ -6,7 +6,7 @@
* @author Averatec
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 47dc6144..6872f376 100644
--- a/system/pages/records.php
+++ b/system/pages/records.php
@@ -6,7 +6,7 @@
* @author Gesior
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 9a3e5d40..0613a4d5 100644
--- a/system/pages/rules.php
+++ b/system/pages/rules.php
@@ -6,7 +6,7 @@
* @author Gesior
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 34985413..7fc698f0 100644
--- a/system/pages/serverinfo.php
+++ b/system/pages/serverinfo.php
@@ -6,7 +6,7 @@
* @author Gesior
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 b4324a75..66f822da 100644
--- a/system/pages/spells.php
+++ b/system/pages/spells.php
@@ -6,7 +6,7 @@
* @author Gesior
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @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 6f3a73e5..643a32c9 100644
--- a/system/pages/team.php
+++ b/system/pages/team.php
@@ -6,7 +6,7 @@
* @author Gesior
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @link http://my-aac.org
*/
defined('MYAAC') or die('Direct access not allowed!');
diff --git a/system/pages/videos.php b/system/pages/videos.php
index 44ebb4fe..289ccd1b 100644
--- a/system/pages/videos.php
+++ b/system/pages/videos.php
@@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @link http://my-aac.org
*/
defined('MYAAC') or die('Direct access not allowed!');
diff --git a/system/status.php b/system/status.php
index 8e5cac60..a1b2d81c 100644
--- a/system/status.php
+++ b/system/status.php
@@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @link http://my-aac.org
*/
defined('MYAAC') or die('Direct access not allowed!');
diff --git a/system/template.php b/system/template.php
index caee5c5e..d7c0cc5f 100644
--- a/system/template.php
+++ b/system/template.php
@@ -5,7 +5,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @link http://my-aac.org
*/
defined('MYAAC') or die('Direct access not allowed!');
diff --git a/tools/validate.php b/tools/validate.php
index a79b759e..a123ecc3 100644
--- a/tools/validate.php
+++ b/tools/validate.php
@@ -6,7 +6,7 @@
* @package MyAAC
* @author Slawkens
* @copyright 2017 MyAAC
- * @version 0.5.1
+ * @version 0.6.0
* @link http://my-aac.org
*/