[quote=""Teelk";p="9594""]
I was sure there was this feature using configuration+, but I can't find it. So, I think it would require a MOD... you can try something like this, but it's untested and taken from "admins allowed html" by mitsubishi.
Open viewtopic.php
FIND
// // If the board has HTML off but the post has HTML // on then we process it, else leave it alone // if ( !$board_config['allow_html'] || !$userdata['user_allowhtml'])
REPLACE WITH
// // If the board has HTML off but the post has HTML // on then we process it, else leave it alone // if ( !$board_config['allow_html'] && $postrow[$i]['user_level'] != ADMIN || !$userdata['user_allowhtml'] && $postrow[$i]['user_level'] != ADMIN)
Open posting.php
FIND
//// End session management//
AFTER ADD
if ($userdata['user_level'] == ADMIN){ $board_config['allow_html'] = 1;}
Open includes/topic_review.php
FIND
$sql = "SELECT u.username, u.user_id, p.*, pt.post_text, pt.post_subject, pt.bbcode_uid
REPLACE WITH
$sql = "SELECT u.username, u.user_id, u.user_level, p.*, pt.post_text, pt.post_subject, pt.bbcode_uid
FIND
// // If the board has HTML off but the post has HTML // on then we process it, else leave it alone // if ( !$board_config['allow_html'] && $row['enable_html'] )
REPLACE WITH
// If the board has HTML off but the post has HTML // on then we process it, else leave it alone // if ( !$board_config['allow_html'] && $row['enable_html'] && $row['user_level'] != ADMIN )
But, as I said, this is untested so if you want to use it backup these three files first.
EDIT]
if i wanna add something like this
[code]<a href="http]
what tag should i add to the list
[url=http][img=left]http://img50.imageshack.us/img50/2371/userbar19iy.gif[/img][/url]