Hey guys, this is a small one but currently WP-Mobile-Edition causes WP_DEBUG to throw errors about deprecated arguments:
Notice: has_cap was called with an argument that is deprecated since version 2.0! Usage of user levels by plugins and themes is deprecated. Use roles and capabilities instead. in /.../wp-includes/functions.php on line 3327
This is really easy to fix, and just involves switching your add_options_page() call to use a text-based capability name (like 'manage_options') instead of a numeric 'role level' (like 10). The numeric role levels have been uncool for a long time, but with 3.0 WP_DEBUG started complaining. I see you're already using 'manage_options' in other places, so you just need to use that in the admin page functions as well.
more info about WP_DEBUG: http://codex.wordpress.org/Editing_wp-config.php#Debug
Thanks!