Version: 1.9.0, by Phalynx
Developer Last Online: Nov 2015
Category: Administrative and Maintenance Tools -
Version: 4.0.4
Rating:
Released: 06-23-2010
Last Update: Never
Installs: 734
Uses Plugins Auto-Templates
Translations
No support by the author.
Change Posts Owner
Created by Marius Czyz aka Phalynx. Converted to vBulletin 4 by Speedy1505.
Tested on vBulletin 4.0.3 and 4.0.4
What does this modification do?
It can change the owner and date of multiple threads and post. For this, it adds another option to your mod actions on forumdisplay, showthread and search results. After selecting some threads or posts, you can choose the new owner by name or by UserID. "By name" works with the AJAX namesuggestion, we all know it from writing a PM. After changing the name, it rebuilds thread/forum counters and post counter of old and new user. Attachments will also be assigned to new user.
Installtime: <1 minutes
Difficulty: very easy (1 product)
Demo is not available, due to missing permissions on my board.
Please click Mark as INSTALLED, otherwise I will not support you.
Features
- Can change owner and date of selected posts and threads (including database attachments - it will not move file attachments)
- Can change owner to unregistered user and back
- Can accept user id and username
- Username input is driven by AJAX
- Post count of involved users will be increased/decreased
- Thread and forum counters of involved threads and forums will be rebuild
- Supports inline moderation
- Makes use of $template_hooks, hooks and simple group permissions
- Every change will leave a notice in moderation log
Languages
- English
- German
- Turkish
- Russian
- Polish
- Spanish
- Arabic
How to install?- Simply import product
How to upgrade?- Uninstall existing product, install new one
Changelog
v1.9, release 24. June 2010
- Converted to vBulletin 4
v1.8, released 7. January 2009
- Apostroph in Username will be filtered out
- Fixed 12h/24h recognition
v1.7, released 4. June 2008
- Attachments will now be also assigned to the new user
- Added ability to change date of posting
- Added ability to assign post to guest user
- Added ability to set IP Address (-> AdmincP, Settings)
- Added moderation to search result (posts)
v1.6, released 19. June 2008
- Post counter of old and new user will be updated
- Added moderation to search result (threads)
- Clean up code
- Compatible with vBulletin 3.7 GOLD
- Minor fixes
Call to undefined function split() on line 50 in /home/*******/public_html/forums/inlinemod.php(372) : eval()'d code
#0 /home/*******/public_html/forums/inlinemod.php(372): eval()
#1 {main}
I updated my board from 4.2.4 to 4.2.5 yesterday and set the PHP version from 5.6 to 7.1. However, I got the same error as Raptor when I tried to change a post's owner. Thanks to Masterross's attached file it works perfectly now. And thanks to Raptor for linking to it!
In PHP 7, split() was removed. Changing split to explode should suffice. Alternatively, you can use the preg_split and using what the link above has.
On line 199 of the addon, setting split to explode will make it function once more.
You can also edit the plugin's hook at inlinemod_start titled "Change Thread/Post owner (inline)", and changing the above.