| Forum bug IE [message #4307] |
Sun, 20 June 2010 21:49  |
Hasan  Messages: 89 Registered: April 2010 |
Seeder |
|
|
Found new forum bugs..
1)Moderator and users cannot delete/edit their post..
2)The Box to write a msg (post replay) is to small in IE so you cannot wrote a thing in it.
3)How to make the post replay box ( where to write msg) bigger in firefox ?
Thanks in advance.
My site www.u-torrentz.org
|
|
|
|
|
|
|
| Re: Forum bug IE [message #4316 is a reply to message #4313] |
Tue, 22 June 2010 04:43   |
|
for deleteing post find
if ($action == "deletepost") {
$postid = $_GET["postid"];
$sure = $_GET["sure"];
if (!$user->admin || !is_valid_id($postid))
die;
and replace with
if ($action == "deletepost") {
$postid = $_GET["postid"];
$sure = $_GET["sure"];
$res = $db->sql_query("SELECT userid FROM ".$db_prefix."_forum_posts WHERE id=$postid") or forumsqlerr(__FILE__, __LINE__);
$arr = $db->sql_fetchrow($res);
if ($arr['userid'] != $user->id AND !checkaccess("modforum"))showerror(_bterror, "Can't delete post access denied.\n");
if(!is_valid_id($postid))showerror(_bterror, _btiderror);
and for textarea add to the forum css
textarea {
background-color:#0000FF;
color:#FF0000;
}
and edit it to the color you want
[Updated on: Tue, 22 June 2010 04:45] Report message to a moderator
|
|
|
|
|
| Re: Forum bug IE [message #4365 is a reply to message #4325] |
Wed, 30 June 2010 22:09   |
Hasan  Messages: 89 Registered: April 2010 |
Seeder |
|
|
the box got bigger in firefox but not in IE mate..still small?
Btw. in your site/forum I can't see some pic in FAQ/Search. Again in IE.. just too let you know.
My site www.u-torrentz.org
[Updated on: Wed, 30 June 2010 22:10] Report message to a moderator
|
|
|
|
|
|