diff --git a/CREDITS b/CREDITS index 54b47984..fea799d0 100644 --- a/CREDITS +++ b/CREDITS @@ -1,2 +1,2 @@ * Gesior.pl (2007 - 2008) -* Slawkens (2009 - 2017) +* Slawkens (2009 - 2019) diff --git a/README.md b/README.md index 3df012ff..9f3fb2f9 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Official website: https://my-aac.org ### OTHER NOTES - If you have a great idea or want contribute to the project - visit our website at http://www.my-aac.org + If you have a great idea or want contribute to the project - visit our website at https://www.my-aac.org ### LICENSING diff --git a/common.php b/common.php index 7a86756d..e84395a1 100644 --- a/common.php +++ b/common.php @@ -20,8 +20,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ session_start(); diff --git a/config.php b/config.php index 0312058d..fadf0a92 100644 --- a/config.php +++ b/config.php @@ -12,8 +12,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ $config = array( @@ -40,7 +40,7 @@ $config = array( 'client' => 1098, // 954 = client 9.54 'session_prefix' => 'myaac_', // must be unique for every site on your server - 'friendly_urls' => false, // mod_rewrite is required for this, it makes links looks more elegant to eye, and also are SEO friendly (example: http://my-aac.org/guilds/Testing instead of http://my-aac.org/?subtopic=guilds&name=Testing). Remember to rename .htaccess.dist to .htaccess + 'friendly_urls' => false, // mod_rewrite is required for this, it makes links looks more elegant to eye, and also are SEO friendly (example: https://my-aac.org/guilds/Testing instead of https://my-aac.org/?subtopic=guilds&name=Testing). Remember to rename .htaccess.dist to .htaccess 'gzip_output' => false, // gzip page content before sending it to the browser, uses less bandwidth but more cpu cycles // gesior backward support (templates & pages) diff --git a/index.php b/index.php index 5afc0972..f14b5ffa 100644 --- a/index.php +++ b/index.php @@ -20,8 +20,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ require_once 'common.php'; diff --git a/install/steps/7-finish.php b/install/steps/7-finish.php index 795a88f6..f17a7da2 100644 --- a/install/steps/7-finish.php +++ b/install/steps/7-finish.php @@ -112,8 +112,8 @@ else { $query = $db->query("SELECT `id` FROM `" . TABLE_PREFIX ."news` WHERE `title` LIKE 'Hello!';"); if($query->rowCount() == 0) { - if(query("INSERT INTO `" . TABLE_PREFIX ."news` (`id`, `type`, `date`, `category`, `title`, `body`, `player_id`, `comments`, `hidden`) VALUES (NULL, '1', UNIX_TIMESTAMP(), '2', 'Hello!', 'MyAAC is just READY to use!', " . $player_id . ", 'http://my-aac.org', '0'); - INSERT INTO `myaac_news` (`id`, `type`, `date`, `category`, `title`, `body`, `player_id`, `comments`, `hidden`) VALUES (NULL, '2', UNIX_TIMESTAMP(), '4', 'Hello tickets!', 'http://my-aac.org', " . $player_id . ", '', '0');")) { + if(query("INSERT INTO `" . TABLE_PREFIX ."news` (`id`, `type`, `date`, `category`, `title`, `body`, `player_id`, `comments`, `hidden`) VALUES (NULL, '1', UNIX_TIMESTAMP(), '2', 'Hello!', 'MyAAC is just READY to use!', " . $player_id . ", 'https://my-aac.org', '0'); + INSERT INTO `myaac_news` (`id`, `type`, `date`, `category`, `title`, `body`, `player_id`, `comments`, `hidden`) VALUES (NULL, '2', UNIX_TIMESTAMP(), '4', 'Hello tickets!', 'https://my-aac.org', " . $player_id . ", '', '0');")) { success($locale['step_database_created_news']); } } @@ -124,7 +124,7 @@ else { )); if(!isset($_SESSION['installed'])) { - $report_url = 'http://my-aac.org/report_install.php?v=' . MYAAC_VERSION . '&b=' . urlencode(BASE_URL); + $report_url = 'https://my-aac.org/report_install.php?v=' . MYAAC_VERSION . '&b=' . urlencode(BASE_URL); if (function_exists('curl_version')) { $curl = curl_init(); diff --git a/install/tools/7-finish.php b/install/tools/7-finish.php index 8496b2de..1b49d3eb 100644 --- a/install/tools/7-finish.php +++ b/install/tools/7-finish.php @@ -91,6 +91,6 @@ require_once SYSTEM . 'migrations/22.php'; $locale['step_finish_desc'] = str_replace('$ADMIN_PANEL$', generateLink(str_replace('tools/', '',ADMIN_URL), $locale['step_finish_admin_panel'], true), $locale['step_finish_desc']); $locale['step_finish_desc'] = str_replace('$HOMEPAGE$', generateLink(str_replace('tools/', '', BASE_URL), $locale['step_finish_homepage'], true), $locale['step_finish_desc']); -$locale['step_finish_desc'] = str_replace('$LINK$', generateLink('http://my-aac.org', 'http://my-aac.org', true), $locale['step_finish_desc']); +$locale['step_finish_desc'] = str_replace('$LINK$', generateLink('https://my-aac.org', 'https://my-aac.org', true), $locale['step_finish_desc']); success($locale['step_finish_desc']); \ No newline at end of file diff --git a/system/clients.conf.php b/system/clients.conf.php index 74c8bf27..6750f0de 100644 --- a/system/clients.conf.php +++ b/system/clients.conf.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/compat.php b/system/compat.php index dfd987f1..40d2617e 100644 --- a/system/compat.php +++ b/system/compat.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/compat_pages.php b/system/compat_pages.php index c690e908..1830ecd5 100644 --- a/system/compat_pages.php +++ b/system/compat_pages.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); switch($page) diff --git a/system/counter.php b/system/counter.php index 7c59d40f..ada05903 100644 --- a/system/counter.php +++ b/system/counter.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); define('COUNTER_SYNC', 10); // how often counter is synchronized with database (each x site refreshes) diff --git a/system/countries.conf.php b/system/countries.conf.php index db796920..f9d825c9 100644 --- a/system/countries.conf.php +++ b/system/countries.conf.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/database.php b/system/database.php index a342ec3b..d0f3fbda 100644 --- a/system/database.php +++ b/system/database.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/functions.php b/system/functions.php index 1febc677..24cbf0f1 100644 --- a/system/functions.php +++ b/system/functions.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/hooks.php b/system/hooks.php index 18610967..923cbc9c 100644 --- a/system/hooks.php +++ b/system/hooks.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/init.php b/system/init.php index 5c68c970..61d72352 100644 --- a/system/init.php +++ b/system/init.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/item.php b/system/item.php index 8930f94b..0434fe39 100644 --- a/system/item.php +++ b/system/item.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); require_once SYSTEM . 'libs/items_images.php'; diff --git a/system/libs/cache.php b/system/libs/cache.php index faa868e2..880c33c7 100644 --- a/system/libs/cache.php +++ b/system/libs/cache.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Slawkens * @author Mark Samman (Talaturen) - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://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 22fb0dc9..a997e6e5 100644 --- a/system/libs/cache_apc.php +++ b/system/libs/cache_apc.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Slawkens * @author Mark Samman (Talaturen) - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/libs/cache_apcu.php b/system/libs/cache_apcu.php index f7b3077e..d4979f23 100644 --- a/system/libs/cache_apcu.php +++ b/system/libs/cache_apcu.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Slawkens * @author Mark Samman (Talaturen) - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://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 0815f10d..e5285a64 100644 --- a/system/libs/cache_eaccelerator.php +++ b/system/libs/cache_eaccelerator.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Slawkens * @author Mark Samman (Talaturen) - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://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 89f2087b..13e34ef8 100644 --- a/system/libs/cache_file.php +++ b/system/libs/cache_file.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/libs/cache_php.php b/system/libs/cache_php.php index 84a41ac3..e7c2bb5e 100644 --- a/system/libs/cache_php.php +++ b/system/libs/cache_php.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://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 104ae5b3..bb1c054c 100644 --- a/system/libs/cache_xcache.php +++ b/system/libs/cache_xcache.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Slawkens * @author Mark Samman (Talaturen) - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/libs/creatures.php b/system/libs/creatures.php index 97f9bb92..769cb615 100644 --- a/system/libs/creatures.php +++ b/system/libs/creatures.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/libs/data.php b/system/libs/data.php index 42a5fa91..64d93f78 100644 --- a/system/libs/data.php +++ b/system/libs/data.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/libs/forum.php b/system/libs/forum.php index dbc4c806..68374622 100644 --- a/system/libs/forum.php +++ b/system/libs/forum.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/libs/items.php b/system/libs/items.php index de7ae890..e652d4e8 100644 --- a/system/libs/items.php +++ b/system/libs/items.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/libs/items_images.php b/system/libs/items_images.php index 9c43e1c9..415c6a07 100644 --- a/system/libs/items_images.php +++ b/system/libs/items_images.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/libs/plugins.php b/system/libs/plugins.php index ea862d3b..e91d3ff3 100644 --- a/system/libs/plugins.php +++ b/system/libs/plugins.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/libs/spells.php b/system/libs/spells.php index 546d85bf..45fa426e 100644 --- a/system/libs/spells.php +++ b/system/libs/spells.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/libs/timer.php b/system/libs/timer.php index 96d82333..cb14c008 100644 --- a/system/libs/timer.php +++ b/system/libs/timer.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/libs/usage_statistics.php b/system/libs/usage_statistics.php index 49e2a591..cd9c7930 100644 --- a/system/libs/usage_statistics.php +++ b/system/libs/usage_statistics.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/libs/validator.php b/system/libs/validator.php index ceba87b5..749234fa 100644 --- a/system/libs/validator.php +++ b/system/libs/validator.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/libs/visitors.php b/system/libs/visitors.php index 88faae26..b8b80dba 100644 --- a/system/libs/visitors.php +++ b/system/libs/visitors.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/libs/weapons.php b/system/libs/weapons.php index 364423c5..81753038 100644 --- a/system/libs/weapons.php +++ b/system/libs/weapons.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/login.php b/system/login.php index 9d6b8d4b..4c267929 100644 --- a/system/login.php +++ b/system/login.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $logged = false; diff --git a/system/pages/404.php b/system/pages/404.php index c7b1434f..90a8921a 100644 --- a/system/pages/404.php +++ b/system/pages/404.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = '404 Not Found'; diff --git a/system/pages/account.php b/system/pages/account.php index 881acc82..31366187 100644 --- a/system/pages/account.php +++ b/system/pages/account.php @@ -5,8 +5,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/account/change_comment.php b/system/pages/account/change_comment.php index e1f36531..43cfd0ca 100644 --- a/system/pages/account/change_comment.php +++ b/system/pages/account/change_comment.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/account/change_email.php b/system/pages/account/change_email.php index 522c86df..ececd2da 100644 --- a/system/pages/account/change_email.php +++ b/system/pages/account/change_email.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/account/change_info.php b/system/pages/account/change_info.php index e9b89c00..df02d288 100644 --- a/system/pages/account/change_info.php +++ b/system/pages/account/change_info.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/account/change_name.php b/system/pages/account/change_name.php index 4836301d..1506d545 100644 --- a/system/pages/account/change_name.php +++ b/system/pages/account/change_name.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/account/change_password.php b/system/pages/account/change_password.php index 2ef2ce2c..74934d67 100644 --- a/system/pages/account/change_password.php +++ b/system/pages/account/change_password.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/account/change_sex.php b/system/pages/account/change_sex.php index 58a9f90f..f3eb8299 100644 --- a/system/pages/account/change_sex.php +++ b/system/pages/account/change_sex.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/account/confirm_email.php b/system/pages/account/confirm_email.php index a3816854..078ba324 100644 --- a/system/pages/account/confirm_email.php +++ b/system/pages/account/confirm_email.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/account/create_character.php b/system/pages/account/create_character.php index cf6f1647..0c743961 100644 --- a/system/pages/account/create_character.php +++ b/system/pages/account/create_character.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/account/delete_character.php b/system/pages/account/delete_character.php index da1144fb..9d8f33a7 100644 --- a/system/pages/account/delete_character.php +++ b/system/pages/account/delete_character.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/account/register.php b/system/pages/account/register.php index 5b168d39..72da9ab8 100644 --- a/system/pages/account/register.php +++ b/system/pages/account/register.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/account/register_new.php b/system/pages/account/register_new.php index 5c874aab..38c95577 100644 --- a/system/pages/account/register_new.php +++ b/system/pages/account/register_new.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/accountmanagement.php b/system/pages/accountmanagement.php index 88386642..33535d82 100644 --- a/system/pages/accountmanagement.php +++ b/system/pages/accountmanagement.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Account Management'; diff --git a/system/pages/admin/accounts.php b/system/pages/admin/accounts.php index afafc6e8..06c5399f 100644 --- a/system/pages/admin/accounts.php +++ b/system/pages/admin/accounts.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Lee * @copyright 2018 MyAAC - * @link http://my-aac.org + * @link https://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 e0120cad..d797fac8 100644 --- a/system/pages/admin/changelog.php +++ b/system/pages/admin/changelog.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'MyAAC Changelog'; diff --git a/system/pages/admin/dashboard.php b/system/pages/admin/dashboard.php index 0fd610d2..45965cfe 100644 --- a/system/pages/admin/dashboard.php +++ b/system/pages/admin/dashboard.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Dashboard'; diff --git a/system/pages/admin/items.php b/system/pages/admin/items.php index 03db8b31..3d6e712e 100644 --- a/system/pages/admin/items.php +++ b/system/pages/admin/items.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Load items.xml'; diff --git a/system/pages/admin/login.php b/system/pages/admin/login.php index 7a04be48..624258a9 100644 --- a/system/pages/admin/login.php +++ b/system/pages/admin/login.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Login'; diff --git a/system/pages/admin/logs.php b/system/pages/admin/logs.php index 07f7f5a3..1913edf0 100644 --- a/system/pages/admin/logs.php +++ b/system/pages/admin/logs.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Logs viewer'; diff --git a/system/pages/admin/mailer.php b/system/pages/admin/mailer.php index d380e05c..48edfcd6 100644 --- a/system/pages/admin/mailer.php +++ b/system/pages/admin/mailer.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Mailer'; diff --git a/system/pages/admin/menus.php b/system/pages/admin/menus.php index 07c50c8f..a57c70fd 100644 --- a/system/pages/admin/menus.php +++ b/system/pages/admin/menus.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Menus'; diff --git a/system/pages/admin/news.php b/system/pages/admin/news.php index 1a871ed5..d36067e3 100644 --- a/system/pages/admin/news.php +++ b/system/pages/admin/news.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); require_once LIBS . 'forum.php'; diff --git a/system/pages/admin/notepad.php b/system/pages/admin/notepad.php index 99f3224e..d7296441 100644 --- a/system/pages/admin/notepad.php +++ b/system/pages/admin/notepad.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Notepad'; diff --git a/system/pages/admin/pages.php b/system/pages/admin/pages.php index cc200aa5..0aa65d68 100644 --- a/system/pages/admin/pages.php +++ b/system/pages/admin/pages.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Pages'; diff --git a/system/pages/admin/phpinfo.php b/system/pages/admin/phpinfo.php index 3c557aa8..e7fedad0 100644 --- a/system/pages/admin/phpinfo.php +++ b/system/pages/admin/phpinfo.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'PHP Info'; diff --git a/system/pages/admin/players.php b/system/pages/admin/players.php index 4643f06c..1944169d 100644 --- a/system/pages/admin/players.php +++ b/system/pages/admin/players.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://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 75658f4b..54aa1dc6 100644 --- a/system/pages/admin/plugins.php +++ b/system/pages/admin/plugins.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Plugin manager'; diff --git a/system/pages/admin/reports.php b/system/pages/admin/reports.php index 5a951aec..6b034b94 100644 --- a/system/pages/admin/reports.php +++ b/system/pages/admin/reports.php @@ -5,7 +5,7 @@ * @package MyAAC * @author Lee * @copyright 2018 MyAAC - * @link http://my-aac.org + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Report viewer'; diff --git a/system/pages/admin/statistics.php b/system/pages/admin/statistics.php index 2136af9a..17d8118f 100644 --- a/system/pages/admin/statistics.php +++ b/system/pages/admin/statistics.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Statistics'; diff --git a/system/pages/admin/tools.php b/system/pages/admin/tools.php index bac4734c..2b880b46 100644 --- a/system/pages/admin/tools.php +++ b/system/pages/admin/tools.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Tools'; diff --git a/system/pages/admin/version.php b/system/pages/admin/version.php index 0f2ac427..c9a0386e 100644 --- a/system/pages/admin/version.php +++ b/system/pages/admin/version.php @@ -4,18 +4,18 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Version check'; // fetch version -//$file = @fopen('http://my-aac.org/VERSION', 'r') or die('Error while fetching version.'); +//$file = @fopen('https://my-aac.org/VERSION', 'r') or die('Error while fetching version.'); //$myaac_version = fgets($file); -$myaac_version = @file_get_contents('http://my-aac.org/VERSION'); +$myaac_version = @file_get_contents('https://my-aac.org/VERSION'); if (!$myaac_version) { - warning('Error while fetching version info from http://my-aac.org
+ warning('Error while fetching version info from https://my-aac.org
Please try again later.'); return; } @@ -32,7 +32,7 @@ if ($version_compare == 0) { warning('You\'re using outdated version.
Your version: ' . MYAAC_VERSION . '
Latest version: ' . $myaac_version . '
- Download available at: www.my-aac.org'); + Download available at: www.my-aac.org'); } /* diff --git a/system/pages/admin/visitors.php b/system/pages/admin/visitors.php index 0e980d4c..f3d05e8d 100644 --- a/system/pages/admin/visitors.php +++ b/system/pages/admin/visitors.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Visitors'; diff --git a/system/pages/bans.php b/system/pages/bans.php index a7a1f4b0..d35c639e 100644 --- a/system/pages/bans.php +++ b/system/pages/bans.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Bans list'; diff --git a/system/pages/bugtracker.php b/system/pages/bugtracker.php index 476f029d..a7cffcf0 100644 --- a/system/pages/bugtracker.php +++ b/system/pages/bugtracker.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Bug tracker'; diff --git a/system/pages/changelog.php b/system/pages/changelog.php index e3aeb0d6..6b2adb86 100644 --- a/system/pages/changelog.php +++ b/system/pages/changelog.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Changelog'; diff --git a/system/pages/characters.php b/system/pages/characters.php index 36f4ce71..5acb1167 100644 --- a/system/pages/characters.php +++ b/system/pages/characters.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Characters'; diff --git a/system/pages/commands.php b/system/pages/commands.php index 98c79c27..db0fc637 100644 --- a/system/pages/commands.php +++ b/system/pages/commands.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Commands'; diff --git a/system/pages/createaccount.php b/system/pages/createaccount.php index d75690f4..5b48e7a6 100644 --- a/system/pages/createaccount.php +++ b/system/pages/createaccount.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Create Account'; diff --git a/system/pages/creatures.php b/system/pages/creatures.php index cae31786..c47ffb7b 100644 --- a/system/pages/creatures.php +++ b/system/pages/creatures.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = "Creatures"; diff --git a/system/pages/downloads.php b/system/pages/downloads.php index 62dee42d..75851376 100644 --- a/system/pages/downloads.php +++ b/system/pages/downloads.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ $title = 'Downloads'; diff --git a/system/pages/experiencestages.php b/system/pages/experiencestages.php index db3b8be9..efa6c185 100644 --- a/system/pages/experiencestages.php +++ b/system/pages/experiencestages.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Experience Stages'; diff --git a/system/pages/experiencetable.php b/system/pages/experiencetable.php index e8960266..d8ed39dc 100644 --- a/system/pages/experiencetable.php +++ b/system/pages/experiencetable.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Experience Table'; diff --git a/system/pages/faq.php b/system/pages/faq.php index 2b7bbaa6..f30e7914 100644 --- a/system/pages/faq.php +++ b/system/pages/faq.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Frequently Asked Questions'; diff --git a/system/pages/forum.php b/system/pages/forum.php index 2917cb61..af7ba0f6 100644 --- a/system/pages/forum.php +++ b/system/pages/forum.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Forum'; diff --git a/system/pages/forum/edit_post.php b/system/pages/forum/edit_post.php index c43b3e67..cf44565b 100644 --- a/system/pages/forum/edit_post.php +++ b/system/pages/forum/edit_post.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/forum/move_thread.php b/system/pages/forum/move_thread.php index 5288ba0e..f48a610a 100644 --- a/system/pages/forum/move_thread.php +++ b/system/pages/forum/move_thread.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/forum/new_post.php b/system/pages/forum/new_post.php index e09d4411..d4e447eb 100644 --- a/system/pages/forum/new_post.php +++ b/system/pages/forum/new_post.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/forum/new_thread.php b/system/pages/forum/new_thread.php index bc5641f5..9331bb58 100644 --- a/system/pages/forum/new_thread.php +++ b/system/pages/forum/new_thread.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/forum/remove_post.php b/system/pages/forum/remove_post.php index 137eaa7b..afcb19e6 100644 --- a/system/pages/forum/remove_post.php +++ b/system/pages/forum/remove_post.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/forum/show_board.php b/system/pages/forum/show_board.php index bc7101e6..eef171be 100644 --- a/system/pages/forum/show_board.php +++ b/system/pages/forum/show_board.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/forum/show_thread.php b/system/pages/forum/show_thread.php index 274557c5..0f4be95d 100644 --- a/system/pages/forum/show_thread.php +++ b/system/pages/forum/show_thread.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/gallery.php b/system/pages/gallery.php index 72d3de05..58e34598 100644 --- a/system/pages/gallery.php +++ b/system/pages/gallery.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Gallery'; diff --git a/system/pages/guilds.php b/system/pages/guilds.php index 19b5cbba..0688a4c7 100644 --- a/system/pages/guilds.php +++ b/system/pages/guilds.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Guilds'; diff --git a/system/pages/guilds/accept_invite.php b/system/pages/guilds/accept_invite.php index b463eb8b..d33d5256 100644 --- a/system/pages/guilds/accept_invite.php +++ b/system/pages/guilds/accept_invite.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/guilds/add_rank.php b/system/pages/guilds/add_rank.php index b793ff2a..56b20949 100644 --- a/system/pages/guilds/add_rank.php +++ b/system/pages/guilds/add_rank.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/guilds/change_description.php b/system/pages/guilds/change_description.php index 89292dec..901593d8 100644 --- a/system/pages/guilds/change_description.php +++ b/system/pages/guilds/change_description.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/guilds/change_logo.php b/system/pages/guilds/change_logo.php index 5eb093a8..2430360d 100644 --- a/system/pages/guilds/change_logo.php +++ b/system/pages/guilds/change_logo.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/guilds/change_motd.php b/system/pages/guilds/change_motd.php index 2f1d2bf2..490fea5f 100644 --- a/system/pages/guilds/change_motd.php +++ b/system/pages/guilds/change_motd.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/guilds/change_nick.php b/system/pages/guilds/change_nick.php index 65175c00..68f35315 100644 --- a/system/pages/guilds/change_nick.php +++ b/system/pages/guilds/change_nick.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/guilds/change_rank.php b/system/pages/guilds/change_rank.php index 6e924443..f0503f40 100644 --- a/system/pages/guilds/change_rank.php +++ b/system/pages/guilds/change_rank.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/guilds/cleanup_guilds.php b/system/pages/guilds/cleanup_guilds.php index d98dc3f5..e5e3804e 100644 --- a/system/pages/guilds/cleanup_guilds.php +++ b/system/pages/guilds/cleanup_guilds.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/guilds/cleanup_players.php b/system/pages/guilds/cleanup_players.php index 329791cd..b22746b1 100644 --- a/system/pages/guilds/cleanup_players.php +++ b/system/pages/guilds/cleanup_players.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/guilds/create.php b/system/pages/guilds/create.php index e33ff3de..15d490a1 100644 --- a/system/pages/guilds/create.php +++ b/system/pages/guilds/create.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/guilds/delete_by_admin.php b/system/pages/guilds/delete_by_admin.php index 0eea6ff7..fd9beafb 100644 --- a/system/pages/guilds/delete_by_admin.php +++ b/system/pages/guilds/delete_by_admin.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/guilds/delete_guild.php b/system/pages/guilds/delete_guild.php index f03893d4..cfc87c65 100644 --- a/system/pages/guilds/delete_guild.php +++ b/system/pages/guilds/delete_guild.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/guilds/delete_invite.php b/system/pages/guilds/delete_invite.php index 322a10ba..8a58f323 100644 --- a/system/pages/guilds/delete_invite.php +++ b/system/pages/guilds/delete_invite.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/guilds/delete_rank.php b/system/pages/guilds/delete_rank.php index a97f24e3..6d3cabcb 100644 --- a/system/pages/guilds/delete_rank.php +++ b/system/pages/guilds/delete_rank.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/guilds/invite.php b/system/pages/guilds/invite.php index da05919f..57eda6cf 100644 --- a/system/pages/guilds/invite.php +++ b/system/pages/guilds/invite.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/guilds/kick_player.php b/system/pages/guilds/kick_player.php index eddf881c..f121ecfc 100644 --- a/system/pages/guilds/kick_player.php +++ b/system/pages/guilds/kick_player.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/guilds/leave_guild.php b/system/pages/guilds/leave_guild.php index d951d461..2ce49c8a 100644 --- a/system/pages/guilds/leave_guild.php +++ b/system/pages/guilds/leave_guild.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/guilds/list_of_guilds.php b/system/pages/guilds/list_of_guilds.php index 86f58b8a..1d827c7f 100644 --- a/system/pages/guilds/list_of_guilds.php +++ b/system/pages/guilds/list_of_guilds.php @@ -7,7 +7,7 @@ * @author Slawkens * @author whiteblXK * @copyright 2019 MyAAC - * @link http://my-aac.org + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/guilds/manager.php b/system/pages/guilds/manager.php index 8293b566..c3cabdc8 100644 --- a/system/pages/guilds/manager.php +++ b/system/pages/guilds/manager.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/guilds/pass_leadership.php b/system/pages/guilds/pass_leadership.php index 7d84a20b..ddb3b4a3 100644 --- a/system/pages/guilds/pass_leadership.php +++ b/system/pages/guilds/pass_leadership.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/guilds/save_ranks.php b/system/pages/guilds/save_ranks.php index 2b238651..75ce0417 100644 --- a/system/pages/guilds/save_ranks.php +++ b/system/pages/guilds/save_ranks.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/guilds/show.php b/system/pages/guilds/show.php index 25a2d330..ebd04ce6 100644 --- a/system/pages/guilds/show.php +++ b/system/pages/guilds/show.php @@ -7,7 +7,7 @@ * @author Slawkens * @author whiteblXK * @copyright 2019 MyAAC - * @link http://my-aac.org + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/highscores.php b/system/pages/highscores.php index 2b00ab27..3117578b 100644 --- a/system/pages/highscores.php +++ b/system/pages/highscores.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Highscores'; diff --git a/system/pages/houses.php b/system/pages/houses.php index 5c596059..1d6e6981 100644 --- a/system/pages/houses.php +++ b/system/pages/houses.php @@ -7,7 +7,7 @@ * @author Slawkens * @author whiteblXK * @copyright 2019 MyAAC - * @link http://my-aac.org + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Houses'; diff --git a/system/pages/lastkills.php b/system/pages/lastkills.php index 1333640b..09a54986 100644 --- a/system/pages/lastkills.php +++ b/system/pages/lastkills.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Last Kills'; diff --git a/system/pages/lostaccount.php b/system/pages/lostaccount.php index 58b168ba..bb0ac4cc 100644 --- a/system/pages/lostaccount.php +++ b/system/pages/lostaccount.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Lost Account Interface'; diff --git a/system/pages/news.php b/system/pages/news.php index dba75dfc..193eb143 100644 --- a/system/pages/news.php +++ b/system/pages/news.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/newsarchive.php b/system/pages/newsarchive.php index a32dce31..aefa0fa9 100644 --- a/system/pages/newsarchive.php +++ b/system/pages/newsarchive.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ $_GET['archive'] = true; require 'news.php'; diff --git a/system/pages/online.php b/system/pages/online.php index e846944e..a7d505f5 100644 --- a/system/pages/online.php +++ b/system/pages/online.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Who is online?'; diff --git a/system/pages/polls.php b/system/pages/polls.php index 995563d1..c31b61cb 100644 --- a/system/pages/polls.php +++ b/system/pages/polls.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Averatec * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Polls'; diff --git a/system/pages/records.php b/system/pages/records.php index ff78e098..9a000ef5 100644 --- a/system/pages/records.php +++ b/system/pages/records.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/pages/rules.php b/system/pages/rules.php index af46022c..4ee0e4aa 100644 --- a/system/pages/rules.php +++ b/system/pages/rules.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Server Rules'; diff --git a/system/pages/serverinfo.php b/system/pages/serverinfo.php index ac62c0bb..7c2a519e 100644 --- a/system/pages/serverinfo.php +++ b/system/pages/serverinfo.php @@ -7,7 +7,7 @@ * @author Slawkens * @author whiteblXK * @copyright 2019 MyAAC - * @link http://my-aac.org + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Server info'; diff --git a/system/pages/spells.php b/system/pages/spells.php index b7322449..70aafefc 100644 --- a/system/pages/spells.php +++ b/system/pages/spells.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Spells'; diff --git a/system/pages/team.php b/system/pages/team.php index 16b9beb4..3f338843 100644 --- a/system/pages/team.php +++ b/system/pages/team.php @@ -5,8 +5,8 @@ * @package MyAAC * @author Gesior * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Gamemasters List'; diff --git a/system/status.php b/system/status.php index 1384940e..6b9f2049 100644 --- a/system/status.php +++ b/system/status.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/system/template.php b/system/template.php index 8b349f3c..7edacb42 100644 --- a/system/template.php +++ b/system/template.php @@ -4,8 +4,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); diff --git a/tools/news_preview.php b/tools/news_preview.php index 63842416..7fa1e125 100644 --- a/tools/news_preview.php +++ b/tools/news_preview.php @@ -5,8 +5,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ // we need some functions diff --git a/tools/validate.php b/tools/validate.php index d43f76ef..d07c7103 100644 --- a/tools/validate.php +++ b/tools/validate.php @@ -5,8 +5,8 @@ * * @package MyAAC * @author Slawkens - * @copyright 2017 MyAAC - * @link http://my-aac.org + * @copyright 2019 MyAAC + * @link https://my-aac.org */ // we need some functions