What's New in Version 2.4.0 See changelog
Released
- Replace your Node.JS Bot ready.js file with the latest one in this ZIP (you don't need to if you already updated on August 27th).
-
Replace index.php and complete.php files with the current ones in this ZIP.
- If you made changes to index.php or complete.php you don't want to lose, you can make the changes manually. See below.
index.php - find
location.href = '/';
and replace with
location.href = "<?php echo htmlspecialchars($redirect, ENT_QUOTES, 'UTF-8'); ?>";
complete.php - find
header('location: /');
and replace with
header('location: ' . $redirect);