asinshesq wrote: phpbb.com user 'mistakeprone' made a good suggestion about how this could be used. She suggested that admins set up a private forum that regular users can't see and post in there examples of form posts that the admin can clone from time to time and tweak as the need arises.
3Di wrote: ...Simply i EDIT (but submit again) the hidden post and I copy/paste it in the right place...
(and any poll or survey that happened to be in the post)
3Di wrote:(and any poll or survey that happened to be in the post)
I got the sense of your MOD now, indeed
Just a question: do you know if is it compatible with CH RC5?
* not enough time to check it myself, but don't worry *
asinshesq wrote:3Di wrote:(and any poll or survey that happened to be in the post)
I got the sense of your MOD now, indeed
Just a question: do you know if is it compatible with CH RC5?
* not enough time to check it myself, but don't worry *
I haven't checked that, but it should fince be since I doubt that CH does anything at all to the viewtopic template once you've opened up a topic. The only thing this mod does in the regular phpbb files is to add a link to clone.php next to the quote button on each post. When you click that link, it takes you to clone.php and that is a brand new file that CH can't have messed up. So, should work with CH but once you try it let me know if I'm right about that.
asinshesq wrote: ...see what you think:
scanar wrote: ...also being able to only have access to clone in your own posts....
Code: Select all
if ( $userdata['user_level'] == ADMIN || $userdata['user_level'] == MOD || $is_auth['auth_pollcreate'] )
Code: Select all
OPEN
viewtopic.php
FIND
if ( $userdata['user_level'] == ADMIN || $userdata['user_level'] == MOD || $is_auth['auth_pollcreate'] )
REPLACE IWTH
if ( $userdata['user_level'] == ADMIN || $userdata['user_level'] == MOD || $postrow[$i]['user_id'] == $userdata['user_id'] )
Swizec wrote: I've went throught he code for this mod a bit, and my comment is, why so much code for what you could achieve by simply changing some topic and forum ids ?
theminor wrote: Anyone (original author?) up for revising this mod slightly? Im looking for something that AUTOMATICALLY copies a post made in Forum X, Y, or Z, and puts that copy in Forum A - so users can see just posts on html, just posts on java, just posts on php, or by going to the 'base' forum they can see ALL posts.