Merhaba arkadaşlar php bilgim olmadığı için bir kod ekleme yaptim sayfaya fakat bu kodda bir eksiklik oldu sanırım bu koddan sonraki her karakter siyah renkte çıkıyor, arıza nerede bir kontrol ederseniz sevinirim.
		//Tagging System
		echo '<table width="100%" cellpadding="0" cellspacing="0" border="0">
			<tr>
			<td class="titlebg">
			<b>', $txt['smftags_topic'], '</b>';
			foreach ($context['topic_tags'] as $i => $tag)
			{
				echo '<a href="' . $scripturl . '?action=tags;id=' . $tag['ID_TAG']  . '">' . $tag['tag'] . '</a>&nbsp;';
				if(!$context['user']['is_guest'])
				echo '<a href="' . $scripturl . '?action=tags;sa=deletetag;id=' . $tag['ID']  . '"><font color="#FF0000">[X]</font></a>&nbsp;';
			}
			if(!$context['user']['is_guest'])
			echo '
			&nbsp;<a href="' . $scripturl . '?action=tags;sa=addtag;topic=',$context['current_topic'], '">' . $txt['smftags_addtag'] . '</a>
			</td>
		</tr>
		</table>';
		//End Tagging System