Not only are we getting everything in every menu, we are getting
Code:
[06-Aug-2020 18:11:43 UTC] Request URI: /jetmar/index.php?cmd=mod_list, IP address: 216.177.186.199
#1 require(/zc_plugins/ModList/1.4.1/admin/mod_list.php) called at [/jetmar/index.php:23]
--> PHP Warning: Use of undefined constant BUILT_IN_BOXES - assumed 'BUILT_IN_BOXES' (this will throw an Error in a future version of PHP) in /zc_plugins/ModList/1.4.1/admin/mod_list.php on line 75.
for every listing.
This winds up making a HUGE log file.
Looks like the system is not really picking up the admin/includes/extra_configures/modlist.php even though the define is there.
Lines 71 - 79 of admin/mod_list.php
Code:
<?php } else {
while (!$pages->EOF) {
$key = $pages->fields['language_key'];
if (in_array($key, BUILT_IN_BOXES)) {
$pages->MoveNext();
continue;
}
?>
Bookmarks