'16', 'post_show_browser' => 'true', 'post_show_platform' => 'true'); $auad_save_options = get_option('auad_options'); if (!empty($auad_save_options)) { foreach ($auad_save_options as $key => $option) $auad_options[$key] = $option; } update_option('auad_options', $auad_options); return $auad_options; } function auad_options() { $auad_options = get_auad_options(); if (isset($_POST['update_auad_settings'])) { $auad_options['post_icon_size'] = isset($_POST['post_icon_size']) ? $_POST['post_icon_size'] : '16'; $auad_options['post_show_browser'] = isset($_POST['post_show_browser']) ? $_POST['post_show_browser'] : 'false'; $auad_options['post_show_platform'] = isset($_POST['post_show_platform']) ? $_POST['post_show_platform'] : 'false'; update_option('auad_options', $auad_options); ?>
';
if($auad_options['post_show_platform'] != 'false')
$auad_string .= '
';
$commentID = get_comment_id();
return $auad_string."\n\n" . $comment_text . "\n\n";
}
add_filter('get_comment_text','display_user_agent');
?>