Hi again
I think I possibly found the bug:
In library/functions/core.php line 300 it says:
if ( !is_super_admin() || !is_admin_bar_showing() )
in the condition that determines whether the dkret settings should be loaded to the admin bar. I am not sure why this is set to super admin.
In a wordpress blog network like I run this leads to other administrators not being able to use Tinymce and breaks the AJAX on the dashboard.
I changed it to
if ( !is_admin() || !is_admin_bar_showing() )
and now it seems to work fine.
J?rn, could you clarify whether my approach is correct or whether I break something else with that change?
Mike