vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Moderators Functions - vFcoders - Advanced Report System (https://vborg.vbsupport.ru/showthread.php?t=285206)

Markco 01-01-2013 08:48 PM

please updated VB 4.20pl3

Guru Samrat 01-16-2013 01:36 PM

need this mod for vb 4.0.3 plz give me

M.C. 03-16-2013 03:02 PM

Would be nice to see when someone report his post than PM message is send to the user with link to discussion thread and reason why post been reported...

M.C. 03-17-2013 08:35 AM

Quote:

Originally Posted by trackpads (Post 2345190)
I am having a style issue, something I have screwed up I am sure. But can you tell me what might be wrong? When I click the report icon the box is a small 2 pixel high box.

So how to resolve this issue? Having same....

Dwarden 03-19-2013 11:05 PM

this is great plugin, but needs fixing (lot of manual edits before getting it to work) for 4.2.0 pl3

It would be very nice if it's updated

Zantox 03-20-2013 01:09 AM

This mod works great with vb 4.2. I love it, thanks for making it!

WorldCraft 04-14-2013 10:02 PM

I have a solution to the issue where the Next Page, Prev Page, etc buttons are not working.

Open ars_report.php (the file you uploaded to your modCP directory). And go to line 119, or this statement:
PHP Code:

if ($vbulletin->GPC['page'] != 1

Replace all of this
PHP Code:

        if ($vbulletin->GPC['page'] != 1)
        {
            
$prv $vbulletin->GPC['page'] - 1;
            
$firstpage "<input type=\"button\" class=\"button\" tabindex=\"1\" value=\"&laquo; " $vbphrase['first_page'] . "\" onclick=\"window.location='ars_report.php?" $vbulletin->session->vars['sessionurl'] . "do=open" .
                
"&perpage=" $vbulletin->GPC['perpage'] . "&page=1'\">";
            
$prevpage "<input type=\"button\" class=\"button\" tabindex=\"1\" value=\"&lt; " $vbphrase['prev_page'] . "\" onclick=\"window.location='ars_report.php?" $vbulletin->session->vars['sessionurl'] . "do=open" .
                
"&perpage=" $vbulletin->GPC['perpage'] . "&page=$prv'\">";
        }
        
        if (
$vbulletin->GPC['page'] != $totalpages)
        {
            
$nxt $vbulletin->GPC['page'] + 1;
            
$page_button "ars_report.php?" $vbulletin->session->vars['sessionurl'] . "do=open&perpage=" $vbulletin->GPC['perpage'];
            
$nextpage "<input type=\"button\" class=\"button\" tabindex=\"1\" value=\"" $vbphrase['next_page'] . " &gt;\" onclick=\"window.location='$page_button&page=$nxt'\">";
            
$lastpage "<input type=\"button\" class=\"button\" tabindex=\"1\" value=\"" $vbphrase['last_page'] . " &raquo;\" onclick=\"window.location='$page_button&page=$totalpages'\">";
        } 

With this:
PHP Code:

    if ($_REQUEST['do'] == 'open'
    {
        if (
$vbulletin->GPC['page'] != 1)
        {
            
$prv $vbulletin->GPC['page'] - 1;
            
$firstpage "<input type=\"button\" class=\"button\" tabindex=\"1\" value=\"&laquo; " $vbphrase['first_page'] . "\" onclick=\"window.location='ars_report.php?" $vbulletin->session->vars['sessionurl'] . "do=open" .
                
"&perpage=" $vbulletin->GPC['perpage'] . "&page=1'\">";
            
$prevpage "<input type=\"button\" class=\"button\" tabindex=\"1\" value=\"&lt; " $vbphrase['prev_page'] . "\" onclick=\"window.location='ars_report.php?" $vbulletin->session->vars['sessionurl'] . "do=open" .
                
"&perpage=" $vbulletin->GPC['perpage'] . "&page=$prv'\">";
        }
        
        if (
$vbulletin->GPC['page'] != $totalpages)
        {
            
$nxt $vbulletin->GPC['page'] + 1;
            
$page_button "ars_report.php?" $vbulletin->session->vars['sessionurl'] . "do=open&perpage=" $vbulletin->GPC['perpage'];
            
$nextpage "<input type=\"button\" class=\"button\" tabindex=\"1\" value=\"" $vbphrase['next_page'] . " &gt;\" onclick=\"window.location='$page_button&page=$nxt'\">";
            
$lastpage "<input type=\"button\" class=\"button\" tabindex=\"1\" value=\"" $vbphrase['last_page'] . " &raquo;\" onclick=\"window.location='$page_button&page=$totalpages'\">";
        }
    }
    else 
    {
            if (
$vbulletin->GPC['page'] != 1)
        {
            
$prv $vbulletin->GPC['page'] - 1;
            
$firstpage "<input type=\"button\" class=\"button\" tabindex=\"1\" value=\"&laquo; " $vbphrase['first_page'] . "\" onclick=\"window.location='ars_report.php?" $vbulletin->session->vars['sessionurl'] . "do=close" .
                
"&perpage=" $vbulletin->GPC['perpage'] . "&page=1'\">";
            
$prevpage "<input type=\"button\" class=\"button\" tabindex=\"1\" value=\"&lt; " $vbphrase['prev_page'] . "\" onclick=\"window.location='ars_report.php?" $vbulletin->session->vars['sessionurl'] . "do=close" .
                
"&perpage=" $vbulletin->GPC['perpage'] . "&page=$prv'\">";
        }
        
        if (
$vbulletin->GPC['page'] != $totalpages)
        {
            
$nxt $vbulletin->GPC['page'] + 1;
            
$page_button "ars_report.php?" $vbulletin->session->vars['sessionurl'] . "do=close&perpage=" $vbulletin->GPC['perpage'];
            
$nextpage "<input type=\"button\" class=\"button\" tabindex=\"1\" value=\"" $vbphrase['next_page'] . " &gt;\" onclick=\"window.location='$page_button&page=$nxt'\">";
            
$lastpage "<input type=\"button\" class=\"button\" tabindex=\"1\" value=\"" $vbphrase['last_page'] . " &raquo;\" onclick=\"window.location='$page_button&page=$totalpages'\">";
        }
    } 


Draffi 04-19-2013 10:02 PM

Hi!

Looks like a solution - But it never show all the pages....

Anyway! Thank you for your work!

CEZALAND 05-28-2013 08:25 AM

Thanks for this awesome mod but may you use unique id instead of title of current reports to edit/remove reports? Because if you use utf8 characters in title it will not work (Invalid Reason)

Regards
RevoLand

DrPrepper 06-21-2013 08:27 AM

I love this mod and have been using it for half a year, but recently (the last month or so) I'm getting feedback/complaints from moderators that they have Report alerts in their interface, but when they click it, no Reports are shown. Which is correct because all Reports are already closed. But they keep getting the alert in their display.

What can be the cause of this? (Or even better: a fix) :)

(Am using vBulletin 4.2.0 Patch Level 3 with this mod version 1.0)


All times are GMT. The time now is 05:18 PM.

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.01168 seconds
  • Memory Usage 1,795KB
  • 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
  • (3)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)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