"This post has already been reported."
Moderator: General Moderators
"This post has already been reported."
Can you make the button "disabled" in such case?
There are 10 types of people in this world, those who understand binary and those who don't
Re: "This post has already been reported."
Yes: <input type="submit" disabled>
Re: "This post has already been reported."
lol 
btw, agree with VladSun.

btw, agree with VladSun.
- Jonah Bron
- DevNet Master
- Posts: 2764
- Joined: Thu Mar 15, 2007 6:28 pm
- Location: Redding, California
Re: "This post has already been reported."
+1. And disabled attribute ftw! 

Re: "This post has already been reported."
All it would require is a small modification in viewtopic.php (tested on phpBB v3.0.
.
From this:
To this:
However, I think the current policy is to not make such modifications. 

From this:
Code: Select all
'U_REPORT' => ($auth->acl_get('f_report', $forum_id)) ? append_sid("{$phpbb_root_path}report.$phpEx", 'f=' . $forum_id . '&p=' . $row['post_id']) : '',
Code: Select all
'U_REPORT' => (!$row['post_reported'] && $auth->acl_get('f_report', $forum_id)) ? append_sid("{$phpbb_root_path}report.$phpEx", 'f=' . $forum_id . '&p=' . $row['post_id']) : '',

Re: "This post has already been reported."
Not sure if I interpret you guys correctly. But I read it as being somewhat unfriendly. I'm new here but, don't see the point in all this.
- Jonah Bron
- DevNet Master
- Posts: 2764
- Joined: Thu Mar 15, 2007 6:28 pm
- Location: Redding, California
Re: "This post has already been reported."
@beetree: didn't mean to offend, we're just having fun 

Re: "This post has already been reported."
I'm going to be digging around in there. I'll modify that line shortly.
Re: "This post has already been reported."
Okay, cool. No problem. After I signed up I went around the forum and answered some questions to get a feel of the forum. I suppose that I stepped on some toes doing that. I'm happy to see that my answers were well received and proved helpful to those that actually posted well-intended questions at leastJonah Bron wrote:@beetree: didn't mean to offend, we're just having fun

Talk to you trollers later!

/beetree
Re: "This post has already been reported."
beetree, this specific forum (PHPDN Suggestions) is intended to allow members to post suggestions to the moderators/admin team. So Vlad didn't mean to ask how to disable a button, but rather proposing changes to the forum software we use to disable the 'Report post' button under some circumstances.
- Jonah Bron
- DevNet Master
- Posts: 2764
- Joined: Thu Mar 15, 2007 6:28 pm
- Location: Redding, California
Re: "This post has already been reported."
I did notice that. Good on ya, that's encouraged. As far as I know, everyone's toes are just fine.beetree wrote:After I signed up I went around the forum and answered some questions to get a feel of the forum. I suppose that I stepped on some toes doing that.
Re: "This post has already been reported."
This explains so much. ThanksWeirdan wrote:beetree, this specific forum (PHPDN Suggestions) is intended to allow members to post suggestions to the moderators/admin team. So Vlad didn't mean to ask how to disable a button, but rather proposing changes to the forum software we use to disable the 'Report post' button under some circumstances.

My apologies...
Re: "This post has already been reported."
This has been implemented.