<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Question2Answer Q&amp;A - Recent questions tagged flagging</title>
<link>https://www.question2answer.org/qa/tag/flagging</link>
<description>Powered by Question2Answer</description>
<item>
<title>Design mistake for qa_uservotes? Separate table qa_userflags.</title>
<link>https://www.question2answer.org/qa/62474/design-mistake-qa_uservotes-separate-table-qa_userflags</link>
<description>

&lt;p&gt;I would like to implement the feature that:&amp;nbsp;&lt;/p&gt;

&lt;p&gt;1. Users who flag a post must give a reason (note).
&lt;br&gt;2. Users who flagged will be listed with reasons.&lt;/p&gt;

&lt;p&gt;Now I see that we have table &lt;strong&gt;qa_uservotes&lt;/strong&gt;&amp;nbsp;that (by its name) should register all votes of users in the forum. However, it is also used for the flagging of posts.&amp;nbsp;&lt;/p&gt;

&lt;p&gt;By my thinking, we should have a separate table &lt;strong&gt;qa_userflags&lt;/strong&gt; that stores timestamp, postid, userid for each flag.&lt;/p&gt;

&lt;p&gt;I am also confused about the structure of qa_uservotes, that the column &quot;flag&quot; is always &quot;0&quot;. Makes no sense in my POV.&lt;/p&gt;

&lt;p&gt;Thanks for consideration.&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/62474/design-mistake-qa_uservotes-separate-table-qa_userflags</guid>
<pubDate>Tue, 20 Feb 2018 05:10:59 +0000</pubDate>
</item>
<item>
<title>Show flaggers on mouse over</title>
<link>https://www.question2answer.org/qa/50937/show-flaggers-on-mouse-over</link>
<description>As admin I got used to hover the voting count and see the voters.&lt;br /&gt;
&lt;br /&gt;
It would be helpful to hover the flag message (below the question/a/c) and see the flaggers. But only for admin.&lt;br /&gt;
&lt;br /&gt;
Thx for consideration.</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/50937/show-flaggers-on-mouse-over</guid>
<pubDate>Sun, 20 Mar 2016 04:16:14 +0000</pubDate>
</item>
<item>
<title>Flagging / Reporting Spam users</title>
<link>https://www.question2answer.org/qa/41351/flagging-reporting-spam-users</link>
<description>

&lt;p&gt;
	Just received this wall post:&lt;/p&gt;


&lt;p&gt;
	&lt;img alt=&quot;&quot; src=&quot;http://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=7873099448220926612&quot;&gt;&lt;/p&gt;


&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;


&lt;p&gt;
	on my wall: &lt;a href=&quot;http://www.question2answer.org/qa/user/q2apro.com&quot; rel=&quot;nofollow&quot;&gt;http://www.question2answer.org/qa/user/q2apro.com&lt;/a&gt; - I deleted the post already.&lt;/p&gt;


&lt;p&gt;
	This is the spam user: &lt;a href=&quot;http://www.question2answer.org/qa/user/Robert+H+Chambers+Sr&quot; rel=&quot;nofollow&quot;&gt;http://www.question2answer.org/qa/user/Robert+H+Chambers+Sr&lt;/a&gt;&lt;/p&gt;


&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;


&lt;p&gt;
	Brings up the issue: How to report spam users?&lt;/p&gt;


&lt;p&gt;
	Guess this needs another plugin. Or at least a button for flagging.&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/41351/flagging-reporting-spam-users</guid>
<pubDate>Tue, 18 Nov 2014 04:04:08 +0000</pubDate>
</item>
<item>
<title>Can we add &quot;who flagged&quot; data to /admin/flagged ?</title>
<link>https://www.question2answer.org/qa/21658/can-we-add-who-flagged-data-to-admin-flagged</link>
<description>

&lt;p&gt;
	I have written my own plugin &lt;em&gt;(not released)&lt;/em&gt; just to see the users who flagged, as well as the posts they flagged.&lt;/p&gt;


&lt;p&gt;
	This is not a fancy thing to do, so I would like to see this in core under &lt;strong&gt;/admin/flagged&lt;/strong&gt;&lt;/p&gt;


&lt;p&gt;
	Basically, the query looks like this:
&lt;br&gt;
	
&lt;br&gt;
	&lt;span style=&quot;color:#0000ff;&quot;&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;$queryRecentFlags = qa_db_query_sub(&quot;SELECT postid,userid,flag
&lt;br&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;FROM `^uservotes`
&lt;br&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;WHERE `flag` = 1
&lt;br&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;ORDER BY userid DESC);&lt;/span&gt;
&lt;br&gt;
	&amp;nbsp;&lt;/p&gt;


&lt;p&gt;
	This will contain all the necessary data...&lt;/p&gt;


&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;


&lt;p&gt;
	In case you might ask, why this is necessary: From the member that flagged a post as Spam I can see (by time of membership and if I know the name etc.) if the spam flag is serious or just a kid...&lt;/p&gt;


&lt;p&gt;
	@gidgreen: Implementation into core should be done fast.&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/21658/can-we-add-who-flagged-data-to-admin-flagged</guid>
<pubDate>Thu, 21 Feb 2013 09:52:35 +0000</pubDate>
</item>
<item>
<title>Name of user who flagged a post or question?</title>
<link>https://www.question2answer.org/qa/16077/name-of-user-who-flagged-a-post-or-question</link>
<description>

&lt;p&gt;
	Just got my first flag but would like to see who flagged it.
&lt;br&gt;
	
&lt;br&gt;
	Can I just add a handle to qa-lang-emails.php at:
&lt;br&gt;
	
&lt;br&gt;
	'flagged_body' =&amp;gt; &quot;A post by ^p_handle has received ^flags:\n\n^open^p_context^close\n\nClick below to see the post:\n\n^url\n\nThank you,\n\n^site_title&quot;,
&lt;br&gt;
	
&lt;br&gt;
	^a_handle, ^f_handle, ... ?
&lt;br&gt;
	
&lt;br&gt;
	&amp;nbsp;
&lt;br&gt;
	
&lt;br&gt;
	And is there maybe another way to see the flagger?&lt;/p&gt;


&lt;p&gt;
	Edit: This was asked here as well:
&lt;br&gt;
	• &lt;a href=&quot;http://question2answer.org/qa/14524/automatic-hidden-when-flag&quot; rel=&quot;nofollow&quot;&gt;automatic hidden when flag&lt;/a&gt;&lt;/p&gt;


&lt;hr&gt;


&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;


&lt;p&gt;
	Follow up: &lt;a href=&quot;http://www.question2answer.org/qa/21658/can-we-add-who-flagged-data-to-admin-flagged&quot; rel=&quot;nofollow&quot;&gt;http://www.question2answer.org/qa/21658/can-we-add-who-flagged-data-to-admin-flagged&lt;/a&gt;&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/16077/name-of-user-who-flagged-a-post-or-question</guid>
<pubDate>Wed, 20 Jun 2012 13:24:19 +0000</pubDate>
</item>
</channel>
</rss>