On Nuke Account I got
Warning: require(includes/template_top.php): failed to open stream: Datei oder Verzeichnis nicht gefunden in /ext/modules/content/account/nuke_account.php on line 88
Fatal error: require(): Failed opening required 'includes/template_top.php' (include_path='.:/usr/lib/php7.4') in /ext/modules/content/account/nuke_account.php on line 88
This is because template_top.php and template_bottom.php have been moved to the template directory. The code in lines 88 and 117 should be like this
Code: Select all
require('templates/default/includes/components/template_top.php');
Code: Select all
require('templates/default/includes/components/template_bottom.php');
The currently active template should be inserted here...