6
One option from 2.2 is missing in the new admin. In 2.2., there was an option to maintain tables and cache. So I added a new menu option in /admin/menu.php after ADMENU5:
$i++;
$adminmenu[$i]['title'] = _MI_SIMPLENEWSLETTER_ADMENU7;
$adminmenu[$i]['link'] = "admin/main.php?op=maintain";
$adminmenu[$i]["icon"] = $pathIcon32 . '/update.png';
I added a line to /language/yourlanguage/modinfo.php:
define("_MI_SIMPLENEWSLETTER_ADMENU7", "Maintain tables and cache");
and changed the return of the admin page after the maintenance in main.php (line 898) to:
simplenewsletter_utils::redirect(_AM_SIMPLENEWSLETTER_SAVE_OK, 'index.php', 2);
I think it works fine now.
SMEDrieben