mirror of
https://github.com/slawkens/myaac.git
synced 2025-09-15 13:03:34 +02:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
5df5c64e4f | ||
![]() |
3c4b19743f | ||
![]() |
0e25ce553c |
22
CHANGELOG.md
22
CHANGELOG.md
@@ -1,5 +1,27 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [0.8.20 - 26.11.2024]
|
||||||
|
|
||||||
|
Small fix regarding the latest release and the linux system.
|
||||||
|
|
||||||
|
Download this one, instead of the 0.8.19 if you are using linux.
|
||||||
|
|
||||||
|
If you are using 0.8.19, make this update:
|
||||||
|
|
||||||
|
The fix is to make this change in the system/libs/hooks.php
|
||||||
|
|
||||||
|
Change
|
||||||
|
```
|
||||||
|
require_once LIBS . 'src/plugins.php';
|
||||||
|
```
|
||||||
|
|
||||||
|
Into:
|
||||||
|
```
|
||||||
|
require_once LIBS . 'src/Plugins.php';
|
||||||
|
```
|
||||||
|
|
||||||
|
Yeah, we just changed 'p' to 'P' - that's just case-sensitive nature of linux.
|
||||||
|
|
||||||
## [0.8.19 - 19.11.2024]
|
## [0.8.19 - 19.11.2024]
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@@ -26,7 +26,7 @@
|
|||||||
if (version_compare(phpversion(), '7.2.5', '<')) die('PHP version 7.2.5 or higher is required.');
|
if (version_compare(phpversion(), '7.2.5', '<')) die('PHP version 7.2.5 or higher is required.');
|
||||||
|
|
||||||
define('MYAAC', true);
|
define('MYAAC', true);
|
||||||
define('MYAAC_VERSION', '0.8.19');
|
define('MYAAC_VERSION', '0.8.20');
|
||||||
define('DATABASE_VERSION', 33);
|
define('DATABASE_VERSION', 33);
|
||||||
define('TABLE_PREFIX', 'myaac_');
|
define('TABLE_PREFIX', 'myaac_');
|
||||||
define('START_TIME', microtime(true));
|
define('START_TIME', microtime(true));
|
||||||
|
@@ -61,7 +61,7 @@ define('HOOK_FIRST', HOOK_STARTUP);
|
|||||||
define('HOOK_LAST', HOOK_EMAIL_CONFIRMED);
|
define('HOOK_LAST', HOOK_EMAIL_CONFIRMED);
|
||||||
|
|
||||||
require_once LIBS . 'plugins.php';
|
require_once LIBS . 'plugins.php';
|
||||||
require_once LIBS . 'src/plugins.php';
|
require_once LIBS . 'src/Plugins.php';
|
||||||
|
|
||||||
class Hook
|
class Hook
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user