vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   Inline Moderation Tools (v1.2.1) (https://vborg.vbsupport.ru/showthread.php?t=68791)

rob_daemon 03-17-2005 04:28 AM

Glad you go this fixed :). Interesting problem, I'm not sure why exactly it'd happen, though.

YLP1 03-19-2005 08:25 PM

I still can't get this mod to work for invidivual posts...works for for topics.....this is going to drive me to drink! LOL

I did as you asked and created a new style with no parent, but still have the problem.

Any other ideas?

psico 03-21-2005 05:29 PM

Quote:

Originally Posted by honestjohn
It was related to another javascript applet running on the site - all fixed!

What Javascript? Because I?m having the same problem.

Tnx in advance.

Kei Kurono 03-23-2005 08:33 PM

One thing i felt that can be improved is the inline deletion.

It does soft deletion.

But i want to physically delete a mass of thread, which i cannot do with the inline moderation tool.

maybe you should make so when you tick the forum threads, and select inline option delete, it then prompts, soft ot physical deletion.

just an opinion.

EscortCossie 03-25-2005 02:37 PM

I have the same problem with moving threads.

Does someone have a fix for this?

Edit:

I tired using Firefox insted of IE.. haven't got any problems yet (after moving approx 1000 threads :))

msimplay 03-28-2005 07:24 PM

I have one problem i merged two posts and one of them had attachments and those seemed to disappear when the posts were merged

Neutral Singh 03-29-2005 01:11 AM

Exellent Hack !! I remember the first time i installed this hack, it created a real mess on my forum but this time around it installed like a charm... thanks for this gr8 handy tool !!

Regards

sv1cec 03-29-2005 10:47 AM

I didn't went through the whole thread again, this hack works wonders, since it was installed, but I have a question/suggestion.

In our forums, the moderator are instructed never to delete a post/thread before creating a copy in a specific forum. In that way, if the user who posted the post/thread complains, we have the initial text for resolution.

In some cases, the mods want to copy a single post (or multiples, that's irrelevant) to the specified forum, but also edit the existing post in its original location. Would it be possible to have something similar to split, but which will copy the selected posts in a new thread in a selected forum, while still leaving the original one in its original position, for further action (like editing)? This would be extremely helpful, this hack covers all our moderator needs, but that.

Needless to say, I am at the authors disposal, if I need to elaborate.

UPDATE: I tried to do this myself, but I just do not have the coding expertise and the time to do it. It's pretty similar to splitting, the difference being that new posts have to be created, in addition to a new thread. And that's when I had to go pick up the twins from the nursery. With the twins at home, every coding effort is ... canceled.

Rgds

sv1cec 03-30-2005 01:03 PM

Quote:

Originally Posted by Kei Kurono
One thing i felt that can be improved is the inline deletion.

It does soft deletion.

But i want to physically delete a mass of thread, which i cannot do with the inline moderation tool.

maybe you should make so when you tick the forum threads, and select inline option delete, it then prompts, soft ot physical deletion.

just an opinion.

This is the part of code you should use to permanently delete threads. Go in your inlinemod.php and find:

PHP Code:

        // -------------------------------------------------------------------
        
        
default:
            
print_no_permission();
        break;
    }
}

// ###################################################################
// Handle output

if (defined('PRINT_TPL'))
{
    
$navbits construct_navbits(array('' => 'Inline Moderation Options'));
    eval(
'$navbar = "'fetch_template('navbar') . '";');
    eval(
'$HTML = "' fetch_template(PRINT_TPL) . '";');
    eval(
'print_output("' fetch_template('THREADADMIN') . '");');
}
?> 

Right above that, add:

PHP Code:

        // -------------------------------------------------------------------
        
        
case 'remove':
            if (!
can_moderate($vars['forumid'], 'caneditthreads'))
            {
                
print_no_permission();
            }
            if (!
is_array($vars['threads']))
            {
                eval(
print_standard_error('error_invalidid'));
            }
            if (empty(
$_POST['do']))
                {
                    
define('PRINT_TPL''inline_remove_thread');
                }
            else
                {
                    if (
$_POST['confirm'] == 'Yes')
                    {
                        foreach (
$vars['threads'] AS $threadid)
                        {
                            
delete_thread($threadid$vars['forum']['countposts'], 1, array('userid' => $bbuserinfo['userid'], 'username' => $bbuserinfo['username'], 'reason' => '''keepattachments' => 1));
                        }
                        
build_forum_counters($vars['forumid']);
                    }
                    if (
$vars['forumid'])
                    {
                        
$url "forumdisplay.php?$session[sessionurl]f=$vars[forumid]&mod=1";
                    }
                    eval(
print_standard_redirect('redirect_deletethread'));
                }
        
        break; 

You will also need a template, called inline_remove_thread, which should contain the followings:

HTML Code:

<form action="inlinemod.php" method="post" name="vbform">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="doproces" />
<input type="hidden" name="type" value="thread" />
<input type="hidden" name="inlinemodact" value="remove" />

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
        <td class="tcat">Physically Remove Threads</td>
</tr>
<tr>
        <td class="thead">Forum $vbphrase[title]: <span style="font-weight:normal">{$vars['forum']['title']}</span></td>
</tr>
<tr>
        <td class="panelsurround" align="center">
        <div class="panel">
                <div style="width:$stylevar[formwidth]" align="$stylevar[left]">
                       
                        <fieldset class="fieldset">
                                <legend>Confirmation</legend>
                                <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
                                <tr>
                                        <td>You have selected to physically remove some threads from this forum. <b>This cannot be undone.</b><P>Are you sure you want to proceed?</td>
                                </tr>
                                <tr>
                                        <td>
                                                Confirm removal:
                                                <select name="confirm"><option value='No' selected>No</option><option value='Yes'>Yes</option></select>
                                        </td>
                                </tr>
                                </table>
                        </fieldset>
               
                </div>
        </div>
       
        <div style="margin-top:$stylevar[cellpadding]px">
                <input type="submit" class="button" value="Proceed" accesskey="s" />
                <input type="button" class="button" value="$vbphrase[cancel]" accesskey="c" onclick="history.back(1)" />
        </div>
        </td>
</tr>
</table>

</form>

Then go to your FORUMDISPLAY template and find:

HTML Code:

<option value="undelete">Undelete Threads</option>
Below that, add:

HTML Code:

<if condition="$bbuserinfo['userid']==1">
<option value="remove">Physically Remove Threads</option>
</if>

As you understand, I like to reserve the rights for permanent deletion, only for myself. If you want your mods to be able to use it too, just remove the if and the /if things.

Rgds

Kei Kurono 03-31-2005 04:11 AM

Thx buddy *muaks

Kudos =^_^=;

sv1cec 03-31-2005 02:55 PM

As I said before, one thing my mods were asking from this tool, was the ability to copy selected posts to a new thread in a specified forum. Some times, they want to edit a post, but their instructions is always to keep evidence of the original post, for dispute resolution. They usually do that, by making a copy of the thread in a specific forum. But this gets stupid, if you want to edit one post in a 200 posts thread.

So I came up with an addition to this hack, which is similar to split, but doesn't remove the original posts from the original thread, it just creates a new thread with the selected posts, in a selected forum, without touching the originals. In addition, you can select if you want to end up in the new thread's forum, or return to where you were originally (so that you can edit the original post).

For those interested, here is what you need to do, to add this functionality to this hack:

1. Open inlinemod.php and find:

PHP Code:

        // -------------------------------------------------------------------
        
        
default:
            
print_no_permission();
        break;
    }
}

// ###################################################################
// Thread moderation 

Right above that, add:

PHP Code:

        // -------------------------------------------------------------------
        
        
case 'copy':
            if (!
$vars['thread']['visible'] OR !$vars['thread']['visible'])
            {
                eval(
print_standard_error('error_invalidid'));
            }
            if (!
is_array($vars['posts']))
            {
                eval(
print_standard_error('error_nosplitposts'));
            }
            if (!
can_moderate($vars['thread']['forumid'], 'canmanagethreads'))
            {
                
print_no_permission();
            }
            
            
// Make sure that we've specified the split options
            
if (empty($_POST['do']))
            {
                
$curforumid $vars['thread']['forumid'];
                
$moveforumbits construct_move_forums_options();
                
define('PRINT_TPL''inline_copy');
            }
            else
            {
                
                
// Get the scoop on this new forum
                
$vars['newforum'] = verify_id('forum'intval($_POST['newforumid']));
                
$vars['newforuminfo'] = fetch_foruminfo($vars['newforum']);
                if (!
$vars['newforuminfo']['cancontainthreads'] OR $vars['newforuminfo']['link'])
                {
                    eval(
print_standard_error('error_moveillegalforum'));
                }
                
                
// Construct notes
                
$vars['newnotes'] = sprintf('Thread split from threadid %1$s by %2$s on %3$s at %4$s via Moderation Tool.'$vars['threadid'], $bbuserinfo['username'], vbdate($vboptions['dateformat'], TIMENOW), vbdate($vboptions['timeformat'], TIMENOW));
                
$vars['newnotes'] .= ' ' $vars['thread']['notes'];
                
                
// Create the new thread
                
$DB_site->query("
                    INSERT INTO " 
TABLE_PREFIX "thread
                    (
                        title,
                        lastpost,
                        forumid,
                        open,
                        replycount,
                        postusername,
                        postuserid,
                        lastposter,
                        dateline,
                        views,
                        iconid,
                        notes,
                        visible
                    )
                    VALUES
                    (
                        '" 
addslashes(htmlspecialchars_uni($_POST['title'])) . "',
                        " 
intval($vars['thread']['lastpost']) . ",
                        " 
intval($vars['newforum']) . ",
                        " 
intval($vars['thread']['open']) . ",
                        " 
intval($vars['thread']['replycount']) . ",
                        '" 
addslashes($vars['thread']['postusername']) . "',
                        " 
intval($vars['thread']['postuserid']) . ",
                        '" 
addslashes($vars['thread']['lastposter']) . "',
                        " 
intval($vars['thread']['dateline']) . ",
                        0,
                        " 
intval($vars['thread']['iconid']) . ",
                        '" 
addslashes($vars['newnotes']) . "',
                        " 
intval($vars['thread']['visible']) . "
                    )"
                
);
                
$vars['newthreadid'] = $DB_site->insert_id();
                
            foreach(
$vars['posts'] as $postnumber)
            {
                
$posts=$DB_site->query("SELECT * FROM " TABLE_PREFIX "post WHERE postid=$postnumber");
                
$pst=$DB_site->fetch_array($posts);
                
                
                
$DB_site->query("
                INSERT INTO " 
TABLE_PREFIX "post
                (
                    threadid,
                    parentid,
                    username,
                    userid,
                    title,
                    dateline,
                    pagetext,
                    allowsmilie,
                    showsignature,
                    ipaddress,
                    iconid,
                    visible,
                    attach,
                    warn_flag
                )
                VALUES
                (
                    " 
intval($vars[newthreadid]) . ",
                    " 
intval($pst['parentid']) . ",
                    '" 
addslashes($pst['username']) . "',
                    " 
intval($pst['userid']) . ",
                    '" 
addslashes($pst['title']) . "',
                    " 
intval($pst['dateline']) . ",
                    '" 
addslashes($pst['pagetext']) . "',
                    " 
intval($pst['allowsmilie']) . ",
                    " 
intval($pst['showsignature']) . ",
                    '" 
addslashes($pst['ipaddress']) . "',
                    " 
intval($pst['iconid']) . ",
                    " 
intval($pst['visible']) . ",
                    " 
intval($pst['attach']) . ",
                    " 
intval($pst['warn_flag']) . "
                )"
            
);
             }

                
                
// Update counters
                // #*# things like rebuild search index can go here (maybe, depeneds on MySQL fulltext imp), post count problems from switching post-counted to not (vv) forum(?)
                
build_thread_counters($vars['threadid']);
                
build_thread_counters($vars['newthreadid']);
                
build_forum_counters($vars['thread']['forumid']);
                if (
$vars['thread']['forumid'] != $vars['newforum'])
                {
                    
build_forum_counters($vars['newforum']);
                }
                
                
log_moderator_action($vars['thread'], sprintf('thread copied to %1$s (inline copy)'$vars['newthreadid']));
                
                
// Done! w00t!
                
toss_cookies();
                if (
$_POST['destination']=='old')
                {
                    
$url "showthread.php?$session[sessionurl]t=$vars[threadid]&mod=1";

                }
                else
                {
                    
$url "showthread.php?$session[sessionurl]t=$vars[newthreadid]&mod=1";
                }
                eval(
print_standard_redirect('redirect_copyposts'));
            }
        break; 

Then create a new template called inline_copy, which shall contain the followings:

HTML Code:

<form action="inlinemod.php" method="post" name="vbform">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="doproces" />
<input type="hidden" name="type" value="post" />
<input type="hidden" name="inlinemodact" value="copy" />

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
        <td class="tcat">$vbphrase[copy_thread]</td>
</tr>
<!--
<tr>

        <td class="thead">$vbphrase[title]: <span style="font-weight:normal">{$vars['thread']['title']}</span></td>
</tr>
-->

<tr>
        <td class="panelsurround" align="center">
        <div class="panel">
                <div style="width:$stylevar[formwidth]" align="$stylevar[left]">
                       
                        <fieldset class="fieldset">
                                <legend>Specify new copy thread details</legend>
                                <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
                                <tr>
                                        <td>The selected post(s) will be copied into a new thread in the forum you will specify.<br>You may select the new thread title and in which forum it will be created.<p>
                                                New thread $vbphrase[title]  (old thread title shown):<br />
                                                <input type="text" class="bginput" name="title" size="50" value="{$vars['thread']['title']}"/>
                                        </td>
                                </tr>
                                <tr>
                                        <td>
                                                New thread $vbphrase[forum]:<br />
                                                <select name="newforumid">$moveforumbits</select>
                                        </td>
                                </tr>
                                <tr>
                                        <td>
                                                Where you want to go after the copy:<br />
<select name="destination"><option value="old">Where I was before</option><option value="new">Where the new thread will be created</option></select>
                                        </td>
                                </tr>
                                </table>
                        </fieldset>
               
                </div>
        </div>
       
        <div style="margin-top:$stylevar[cellpadding]px">
                <input type="submit" class="button" value="$vbphrase[copy_thread]" accesskey="s" />
                <input type="reset" class="button" value="$vbphrase[reset_fields]" accesskey="r" />
                <input type="button" class="button" value="$vbphrase[cancel]" accesskey="c" onclick="history.back(1)" />
        </div>
        </td>
</tr>
</table>

</form>


Then open your SHOWTHREAD template and find:

HTML Code:

<select name="inlinemodact">
                                        <option value="merge" selected="selected">Merge Posts</option>
                                        <option value="delete">Soft Delete Posts</option>
                                        <option value="split">Split Posts</option>

Right below that, add :

HTML Code:

<option value="copy">Copy Posts</option>
Finally add a phrase:

Type : Front-end redirect messages
Name: copyposts
Contents: The selected posts have been copied to a new thread, in the forum you specified.

You may want to run this query, to change an existing phrase, so that it can be used in copying as well as in splitting:

update phrase set text='You must specify some posts to split/copy from this thread.' where varname='nosplitposts'


I think this is it, I hope I am not forgetting anything.

YLP1 04-04-2005 05:00 PM

Quote:

You may want to run this query, to change an existing phrase, so that it can be used in copying as well as in splitting:

update phrase set text='You must specify some posts to split/copy from this thread.' where varname='nosplitposts'

I'm confused with this part of this code. How do I do this?

Thanks in advance.

Delphiprogrammi 04-04-2005 09:12 PM

Quote:

Originally Posted by YLP1
I'm confused with this part of this code. How do I do this?

Thanks in advance.

that's a database query phpMyAdmin will help you ...

Code:

UPDATE  phrase SET text='You must specify some posts to split/copy from this thread.' WHERE varname='nosplitposts'

Nordinho 04-05-2005 10:32 PM

Heya,

My body onload tag was allready modified by the image resize hack.
Currently I changed it to:

<body onload="<if condition="can_moderate($thread['forumid']) AND $show['inlinemod']">inline_init($thread[threadid], 'post');</if>$onload ; fiImageResize()">

but this is not working, any idea's what I need to change here??

previously it was:

<body onload="$onload; fiImageResize()">

rob_daemon 04-07-2005 02:58 AM

Try this:

HTML Code:

<body onload="<if condition="can_moderate($thread['forumid']) AND $show['inlinemod']">inline_init($thread[threadid], 'post');</if> fiImageResize(); $onload">

rob_daemon 04-07-2005 03:05 AM

Just an update on things:

I'm working on abstracting a lot of the functions to make it easier to keep things organized and working right. This weekend I'm going to be swamped with work, so I probably won't get anything done. Next weekend I have to finish off a few of my own coding projects. Then in three weeks, I should have time to put the final touches on it. My goal is to have it out by the end of the month.

MentaL 04-10-2005 12:28 AM

hi, my mods say they get a no permission error when using this.. any idea?

rob_daemon 04-10-2005 10:58 PM

Do they have JavaScript enabled? When they click the "Go" button does it have a number in parenthesis or not? What browsers are they using?

MentaL 04-11-2005 12:16 AM

they areable to use it but they get permission denied error.. like as if they where not allowed to use script.. IE (Not mods..)

rob_daemon 04-12-2005 05:34 AM

When they're using the tool, at the bottom of the page there's a "Go" button; when they click it is there a number in parenthesis or not?

sv1cec 04-12-2005 08:33 AM

Folks,

For those of you who decided to use my modification posted above, for copying posts to a new thread, please note that there were .... a few bugs in the way the database was updated. Don't panick nothing serious, it's just that in my hurry to provide you with this, I haven't taken care of all possible issues, and haven't added the required addslashes or intvals. If you haven't had an error when trying to use the copy function, you wouldn't be aware of it. If you had an error, I am sure you would have posted it here.

So, if you want to be 100% correct, please edit your inlinemod.php and find:

PHP Code:

$DB_site->query("
                INSERT INTO " 
TABLE_PREFIX "post
                (
                    threadid,
                    parentid,
                    username,
                    userid,
                    title,
                    dateline,
                    pagetext,
                    allowsmilie,
                    showsignature,
                    ipaddress,
                    iconid,
                    visible,
                    attach,
                    warn_flag
                )
                VALUES
                (
                    '
{$vars[newthreadid]}',
                    '
{$pst['parentid']}',
                    '
{$pst['username']}',
                    '
{$pst['userid']}',
                    '
{$pst['title']}',
                    '
{$pst['dateline']}',
                    '
{$pst['pagetext']}',
                    '
{$pst['allowsmilie']}',
                    '
{$pst['showsignature']}',
                    '
{$pst['ipaddress']}',
                    '
{$pst['iconid']}',
                    '
{$pst['visible']}',
                    '
{$pst['attach']}',
                    '
{$pst['warn_flag']}'
                )"
            
); 

Replace that, with:

PHP Code:

$DB_site->query("
                INSERT INTO " 
TABLE_PREFIX "post
                (
                    threadid,
                    parentid,
                    username,
                    userid,
                    title,
                    dateline,
                    pagetext,
                    allowsmilie,
                    showsignature,
                    ipaddress,
                    iconid,
                    visible,
                    attach,
                    warn_flag
                )
                VALUES
                (
                    " 
intval($vars[newthreadid]) . ",
                    " 
intval($pst['parentid']) . ",
                    '" 
addslashes($pst['username']) . "',
                    " 
intval($pst['userid']) . ",
                    '" 
addslashes($pst['title']) . "',
                    " 
intval($pst['dateline']) . ",
                    '" 
addslashes($pst['pagetext']) . "',
                    " 
intval($pst['allowsmilie']) . ",
                    " 
intval($pst['showsignature']) . ",
                    '" 
addslashes($pst['ipaddress']) . "',
                    " 
intval($pst['iconid']) . ",
                    " 
intval($pst['visible']) . ",
                    " 
intval($pst['attach']) . ",
                    " 
intval($pst['warn_flag']) . "
                )"
            
); 

The code in the above post has been edited with the new ... version.

Apologies for any inconvenience.

Rgds

msimplay 04-12-2005 02:05 PM

i had a recent problem where when i tried to prune a users posts completely the merged posts remained and changed the merged posts status to a guest post, when what i wanted was it to be deleted as the pruning command is supposed to

Lyricsmama 04-16-2005 05:09 PM

Quote:

Originally Posted by rob_daemon
When they're using the tool, at the bottom of the page there's a "Go" button; when they click it is there a number in parenthesis or not?

Hi, I'm having the same problem, both admins and mods have got a no permission message.
Yes there is a parenthesis with a number next to the go number, the number equals the number of checkboxes they've selected...

Nordinho 04-17-2005 02:49 PM

Quote:

Originally Posted by Kei Kurono
One thing i felt that can be improved is the inline deletion.

It does soft deletion.

But i want to physically delete a mass of thread, which i cannot do with the inline moderation tool.

maybe you should make so when you tick the forum threads, and select inline option delete, it then prompts, soft ot physical deletion.

just an opinion.

The mod for 'physically remove threads' work like a charm, but would would it be possible to do this for posts as well. I know it's in 'thread tools' but I want to make it available to some mods as well...

Renada 04-29-2005 01:04 AM

Hi,

I've installed this today on vB 3.07 but no matter what group tries to use it (Mods, Super Mods, even Admins) they're told they don't have permission to view the page when trying to move/delete/stick etc. (in the address bar the page it's looking at is inlinemod.php)

The go button is there, it contains the correct number for the amount of boxes checked.

When trying to merge two messages I get as far as the editing screen - enter the title - am told all selected messages will be merged into one and I push "Merge Posts" only to get the error "Invalid Post specified. If you followed a valid link, please notify the webmaster"

Does anyone have the answer?

Thanks,
Renada

obsidian 05-02-2005 11:48 PM

I just installed and had the same issue with permissions the first time I tried it. I hit the back button and tried again and it worked without issue. I cant seem to break it now so playing with it might fix it.

Great hack BTW..... great time saver.

rob_daemon 05-03-2005 12:49 AM

Alright sorry for not being able to reply for a while, I've managed to keep myself quite busy. I cannot reproduce the no permission error at all. I have tried it with Opera, Safari, IE6, and Firefox; all of these work fine.

Nordinho 05-03-2005 03:15 PM

hmmm...mine stopped working...each time I get the message 'Invalid inline moderation items specified. If you followed a valid link, please notify the webmaster' except when I try to split/copy posts it says 'You must specify some posts to split/copy from this thread.' The post selected are checked and the 'go-button' shows the right amount of threads...any idea's??

edit: never mind, got it fixed ;)

Amavisca 05-05-2005 06:00 AM

Quote:

Originally Posted by Nordinho
hmmm...mine stopped working...each time I get the message 'Invalid inline moderation items specified. If you followed a valid link, please notify the webmaster' except when I try to split/copy posts it says 'You must specify some posts to split/copy from this thread.' The post selected are checked and the 'go-button' shows the right amount of threads...any idea's??

edit: never mind, got it fixed ;)


I got the same problem as u , how do u fix it?

Nordinho 05-06-2005 01:20 PM

Quote:

Originally Posted by Amavisca
I got the same problem as u , how do u fix it?

In my case I thought it was a template error...since I came aware it worked on one of the styles, and I copied the templates from that one to all styles (using Zero Tolerances hack)...and it worked for a day. Next day I got up and all of a sudden it stopped working again (while there were no filechanges etc.), so I'm puzzled again...sorry can't help you more...

kermit_criminal 05-13-2005 08:21 PM

this hack seems redundant on vb 3.0.7

Paul M 05-13-2005 11:25 PM

Quote:

Originally Posted by kermit_criminal
this hack seems redundant on vb 3.0.7

Erm, why ??

kermit_criminal 05-14-2005 10:16 AM

isnt there already the "forum tools". not sure, but isnt this the same thing?

Paul M 05-14-2005 11:05 AM

Not even close to being the same thing .....


It may become redundant in vB 3.5.0 though .....

Mith 05-14-2005 11:11 AM

I have a problem with the tick-boxes it shows as in the attached screenshot.


What I'd like is for the tick boxes to show beside the threads, to the right, but seem to have done something wrong.

Any help appreciated

Screenshot



rob_daemon 05-14-2005 06:11 PM

Quote:

Originally Posted by Mith
I have a problem with the tick-boxes it shows as in the attached screenshot.


What I'd like is for the tick boxes to show beside the threads, to the right, but seem to have done something wrong.

Any help appreciated

Screenshot


Make sure you made the FORUMDISPLAY modifications correctly and the threadbit modifications correctly. These two modifications--if not done correctly--would create that effect.

kermit_criminal 05-14-2005 09:00 PM

Quote:

Originally Posted by Paul M
Not even close to being the same thing .....


It may become redundant in vB 3.5.0 though .....


can you enlighten on this, i honestly dont know. Arent all the functions in inline moderator tools also in forum/thread tools which come default? I hope to be proven wrong as i already have inline moderator tools installed and hope it wasnt a redundancy

rob_daemon 05-15-2005 06:52 PM

Yes, all the tools are there -- that's the point. This hack allows you to perform those actions while viewing the forum or the thread without having to go to a separate page. It allows for inline editing.

WEForums 05-17-2005 07:24 PM

Well...

What about making it so when a mod moves multiple threads, it's located in the mod log? I don't even think move/closing one thread through Inline moderation is logged (I could be wrong, but I believe that's what I found out).

Not sure if that was suggested or not...16 pages is too many to scan through.

Crazy Serb 05-20-2005 04:48 AM

i just realized what the problem in my case is... after changing FORUMDISPLAY and SHOWFORUM templates' <body> tags, and not getting any of those changes to appear in the actual pages, I looked at the code and realized that the latest version of VBAdvanced CMPS had a lot to do with that. First of all, the pages use adv_portal template to display all the pages, making showthread and forumdisplay pages sort of useless... I'll try adding the code into adv_portal template instead and see what happens.


All times are GMT. The time now is 10:05 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.01920 seconds
  • Memory Usage 2,063KB
  • 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
  • (1)bbcode_code_printable
  • (7)bbcode_html_printable
  • (6)bbcode_php_printable
  • (11)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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