vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Reported post creates new thread. (https://vborg.vbsupport.ru/showthread.php?t=83074)

Kroziun 03-29-2006 04:19 PM

Does anyone know of a hack to have the Bad Post Report sent to the ModCP and not emailed or creating a thread like in this instance. I know it's possible as we had it on the forum I used to moderate on, however the Admin is not forthcoming.

Thank you.

P.S. I have spent all day searching this forum and vb.com in case anyone says anything...

Edit: Forget this post - I found the hack I was looking for here: https://vborg.vbsupport.ru/showthread.php?t=105165

Thanks.

Paul M 04-01-2006 10:27 AM

Those people who have a problem with Admins not being able to report a post - I think I may have an answer - I have recently installed the Advanced Editing Options hack on my test forum - and found that this breaks the ability for administrators to report posts (in fact, it breaks a few things, like GARS as well).

Do those having this problem also have AEO installed ?

Essam 04-02-2006 11:35 PM

Quote:

Originally Posted by Paul M
Those people who have a problem with Admins not being able to report a post - I think I may have an answer - I have recently installed the Advanced Editing Options hack on my test forum - and found that this breaks the ability for administrators to report posts (in fact, it breaks a few things, like GARS as well).

Do those having this problem also have AEO installed ?

im installing AEO and no problem

but there is another thing ,,

if the Email Options is off " disabled"
the report page won't work ... :confused:
_____________
p.s : using vB3.5.1

Paul M 04-03-2006 12:38 AM

Quote:

Originally Posted by Essam
if the Email Options is off " disabled"
the report page won't work ... :confused:
_____________
p.s : using vB3.5.1

That's standard vb functionality, nothing to do with this hack. :)

Essam 04-03-2006 03:29 AM

Quote:

Originally Posted by Paul M
That's standard vb functionality, nothing to do with this hack. :)

i've got it now

i removed this part from " report.php " :

Code:


if (!$vbulletin->options['enableemail'])
{
 eval(standard_error(fetch_error('emaildisabled')));
}

thanks anyway .. ;)

COBRAws 04-04-2006 12:55 PM

ive been using this plugin for ages, like many other Paul M's hacks & stuff. But I want to know something (if it was already answered im sorry, but I couldnt find it within the thread). Is there a way so when someone reports a Post, it cant be reported again?

Sometimes We get like 14reports from 1 wrong post and its kinda anoying.

Thank you.

Paul M 04-04-2006 08:07 PM

Not in this version (2.01).

This is, in fact, a very old version of the hack - I'm running Version 3.23 on our forums and preventing repeat reports is one of it's features. I'll get round to a new public release one day. :)

COBRAws 04-05-2006 09:08 AM

Quote:

Originally Posted by Paul M
Not in this version (2.01).

This is, in fact, a very old version of the hack - I'm running Version 3.23 on our forums and preventing repeat reports is one of it's features. I'll get round to a new public release one day. :)

Thank you! =)

pipin 04-13-2006 06:21 PM

i'm trying to exclude one forum from the normal reportforum and redirect into another:

Code:

if ($foruminfo['forumid'] == 16)
{
$report_foruminfo = 142;
}

But i'm getting this error: "Cannot use a scalar value as an array..."

Paul M 04-13-2006 06:50 PM

That won't work.

Try changing this ;

PHP Code:

$report_foruminfo fetch_foruminfo($vbulletin->options['reportforum']); 

to this;

PHP Code:

if ($foruminfo['forumid'] == 16)
{
      
$report_foruminfo fetch_foruminfo(142);
}
else
{
      
$report_foruminfo fetch_foruminfo($vbulletin->options['reportforum']);




All times are GMT. The time now is 10:47 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01364 seconds
  • Memory Usage 1,745KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (2)bbcode_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete