The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
Post-"edit-notes", invisible?
Can't find anywhere to hide "post edited by".
So I wonder if there's some quick and clean way to do it.. (many of my moderators get BS as our users can see exactly who edited their post, and even if warns are anonymous, they know who warned them) -_- |
#2
|
||||
|
||||
I think what you're looking for is in the postbit template.
There is a certain section that is a bit over halfway through that looks like: Code:
<if condition="$show['postedited']"> <!-- edit note --> <div class="smallfont"> <hr size="1" style="color:$stylevar[tborder_bgcolor]" /> <em> <phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]">$vbphrase[last_edited_by_x_on_y_at_z]</phrase>. <if condition="$post['edit_reason']">$vbphrase[reason]: $post[edit_reason]</if> </em> </div> <!-- / edit note --> </if> |
#3
|
||||
|
||||
Well, that's just a posible temporary soloution =\
If anything's done to that part, it would mean that you can't even see when you last edited your own posts. |
#4
|
||||
|
||||
Ah, you never said you wanted to keep the regular edits, just said that you wanted to hide the edited by. I vaguely remember something of that sort, I'll check it out and see what I can find.
"Show edited by note on edited messages?" In the Usergroup Manager, a setting for that usergroup, can make it so that when moderators edit a post it will not be shown. However, moderators who edit their own posts still will not have this show up, so another possible solution. I haven't gone through my tables and stuff well enough to check exactly, but I think this may be the source, in editpost.php Code:
/*insert query*/ $db->query_write(" REPLACE INTO " . TABLE_PREFIX . "editlog (postid, userid, username, dateline, reason) VALUES ($postinfo[postid], " . $vbulletin->userinfo['userid'] . ", '" . $db->escape_string($vbulletin->userinfo['username']) . "', " . TIMENOW . ", '" . $db->escape_string($edit['reason']) . "') "); |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|