Support forum Author: Samuel Devol Version: 1.03 Author URI: http://samdevol.com Support forum: http://samdevol.com/wp-content/myforums/viewforum.php?id=3 */ //if(!current_user_can('manage_options')) // die (__("Verboten!")); function widget_aboutme_init() { if ( !function_exists('register_sidebar_widget') || !function_exists('register_widget_control') ) return; function widget_aboutme_control() { $options = $newoptions = get_option('widget_aboutme'); if ( !is_array($newoptions) ) $newoptions = array( 'title' => 'About Me', 'aboutmehtml'=> ''); if ( $_POST['aboutme-submit'] ) { $newoptions['title'] = strip_tags(stripslashes($_POST['aboutme-title'])); $newoptions['aboutmehtml'] = stripslashes($_POST['aboutme-aboutmehtml']); } if ( $options != $newoptions ) { $options = $newoptions; update_option('widget_aboutme', $options); } $title = htmlspecialchars($options['title'], ENT_QUOTES); $aboutmehtml = htmlspecialchars($options['aboutmehtml']); echo '