Arkadaşlar ini dosyası aşağıdaki gibi bütün html taglara izin vermek için ne yapmalıyım?

echo "<script language='javascript' type='text/javascript' src='".INCLUDES."jscripts/tiny_mce/tiny_mce.js'></script>
<script type='text/javascript'>
function advanced() {
	tinyMCE.init({
		mode:'textareas',
		theme:'advanced',
		width:'100%',
		height:'250',
		language:'".$locale['tinymce']."',
		entities:'60,lt,62,gt',
		document_base_url:'".$settings['siteurl']."',
		relative_urls:'false',
		convert_newlines_to_brs: false,
		force_br_newlines: true,
		force_p_newlines: false,
		plugins:'table,advhr,advimage,advlink,insertdatetime,searchreplace,contextmenu,ibrowser,fullscreen,pagebreak',
		pagebreak_separator : '<--PAGEBREAK-->',
		theme_advanced_buttons1_add_before:'pagebreak,separator',
		theme_advanced_buttons1_add:'fontsizeselect',
		theme_advanced_buttons2_add:'separator,insertdate,inserttime,separator,forecolor,backcolor,separator,fullscreen',
		theme_advanced_buttons3_add_before:'ibrowser,tablecontrols,separator',
		theme_advanced_buttons3_add:'advhr',
		theme_advanced_toolbar_location:'bottom',
		theme_advanced_toolbar_align:'center',
		theme_advanced_toolbar_location:'top',
		theme_advanced_statusbar_location : 'bottom',
		content_css:'".THEME."styles.css',
		external_image_list_url:'".IMAGES."imagelist.js',
		plugin_insertdate_dateFormat:'%d-%m-%Y',
		plugin_insertdate_timeFormat:'%H:%M:%S',
		invalid_elements:'script,object,applet,iframe',
		theme_advanced_resize_horizontal : true,
		theme_advanced_resizing : true,
		apply_source_formatting : true,
		extended_valid_elements:'a[name|href|target|title|onclick],img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name],hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style]'
	});
}

function simple() {
	tinyMCE.init({
	mode:'textareas',
	theme:'simple',
	language:'en',
	convert_newlines_to_brs:'true',
	force_br_newlines:'true',
	force_p_newlines:'false'
	});
}

function showtiny(EditorID) {
	tinyMCE.removeMCEControl(tinyMCE.getEditorId(EditorID));
	tinyMCE.addMCEControl(document.getElementById(EditorID),EditorID);
}

function hidetiny(EditorID) {
	tinyMCE.removeMCEControl(tinyMCE.getEditorId(EditorID));
}
</script>\n";