I found the solution:
Go to the admin-map in your discover theme (in FTP), then open options-framework.php (in an html-editor) and find the following text:
function optionsframework_rolescheck () {
if ( current_user_can( ‘edit_theme_options’ ) ) {
// If the user can edit theme options, let the fun begin!
add_action( ‘admin_menu’, ‘optionsframework_add_page’);
add_action( ‘admin_init’, ‘optionsframework_init’ );
add this line:
add_action( ‘admin_init’, ‘optionsframework_mlu_init’ );
That should do the trick ??