Author |
Topic  |
|
jwiles
Starting Member
7 Posts |
Posted - 26 April 2005 : 14:16:32
|
Basically, I need the Author of a post the ability to move their post.
HOW??
------------------ OLDER INFO: I need the ability of the person who posted a topic to come back to it later and lock it (ie: stop all future post) BUT this person cannot be a moderator, just a user. Or the ability of the poster to move their post, even if they are not mods. This would be just as good, if not better.
can anyone help |
Edited by - jwiles on 27 April 2005 08:29:13 |
|
ruirib
Snitz Forums Admin
    
Portugal
26364 Posts |
|
jwiles
Starting Member
7 Posts |
Posted - 27 April 2005 : 08:59:15
|
Moving the topic and of course this would move the replies as well. I need just a regular user to be able to move it, but HOW??
quote: Originally posted by ruirib
Are you talking about moving a topic or moving replies? Cause the topic's author can move it already...
|
 |
|
Shaggy
Support Moderator
    
Ireland
6780 Posts |
Posted - 27 April 2005 : 09:07:08
|
quote: Originally posted by ruirib Cause the topic's author can move it already...
Just tried editing one of my topics here and a normal user can't move their own topics. Unless there's an admin option to switch it on and off. *really needs to refamiliarise himself with the base features! *
|
Search is your friend “I was having a mildly paranoid day, mostly due to the fact that the mad priest lady from over the river had taken to nailing weasels to my front door again.” |
 |
|
jwiles
Starting Member
7 Posts |
Posted - 27 April 2005 : 09:29:11
|
I don't think there is an admin feature either, BUT, I need to make something to allow those users to move their own topics. Any help is greatly NEEDED! I will gladly even make an ASP change in, say the config.asp if needed, just show me where and what to change. |
Edited by - jwiles on 27 April 2005 09:33:30 |
 |
|
ruirib
Snitz Forums Admin
    
Portugal
26364 Posts |
|
jwiles
Starting Member
7 Posts |
Posted - 27 April 2005 : 09:55:03
|
Please let me know. Also what is the "STRMOVETOPICMODE" under the Application variables? This might be my solution. Or if there is something in my Post.ASP I can change, let me know and I'll change it. |
 |
|
Shaggy
Support Moderator
    
Ireland
6780 Posts |
Posted - 27 April 2005 : 09:59:56
|
That's the admin option that restricts moderators to only being allowed to move their own topics.
|
Search is your friend “I was having a mildly paranoid day, mostly due to the fact that the mad priest lady from over the river had taken to nailing weasels to my front door again.” |
 |
|
jwiles
Starting Member
7 Posts |
Posted - 27 April 2005 : 10:11:20
|
Never mind on the "STRMOVETOPICMODE" Application variable, it is to "Restrict Moderators to moving their own topics" But again if there is something in my Post.ASP I can change, let me know and I'll change it. |
Edited by - jwiles on 27 April 2005 10:11:59 |
 |
|
ruirib
Snitz Forums Admin
    
Portugal
26364 Posts |
Posted - 27 April 2005 : 10:35:33
|
Ok here it goes. This will allow a user to move it's own topics to other forums.
At line# 613, add the red part
if (mLev = 4) or (mLev = 3 and strMoveTopicMode = "0") or ((mLev = 3) and (strMoveTopicMode = "1") and (strAuthor = MemberID)) or (strAuthor = MemberID) then
At line# 622, add the red part:
if mlev = 3 or mlev = 4 or strAuthor = MemberID then
At line# 654, add the red part:
if mlev = 3 or mlev = 4 or strAuthor = MemberID then
Finally, at line# 670, add the red part:
if ChkDisplayForum(ForumPrivateForums,ForumFPasswordNew,ForumID,MemberID) or strAuthor = MemberID then
This should do it. Tested in my localhost and it worked, for a non moderator user. |
Snitz 3.4 Readme | Like the support? Support Snitz too |
Edited by - ruirib on 27 April 2005 10:36:30 |
 |
|
Shaggy
Support Moderator
    
Ireland
6780 Posts |
Posted - 27 April 2005 : 10:39:12
|
Could the code in green be removed? Isn't it made redundant by the new check in red?if (mLev = 4) or (mLev = 3 and strMoveTopicMode = "0") or ((mLev = 3) and (strMoveTopicMode = "1") and (strAuthor = MemberID)) or (strAuthor = MemberID) then |
Search is your friend “I was having a mildly paranoid day, mostly due to the fact that the mad priest lady from over the river had taken to nailing weasels to my front door again.” |
Edited by - Shaggy on 27 April 2005 10:39:38 |
 |
|
ruirib
Snitz Forums Admin
    
Portugal
26364 Posts |
|
jwiles
Starting Member
7 Posts |
Posted - 27 April 2005 : 12:12:53
|
Works Great guys, THANKS A BUNCH. |
 |
|
ruirib
Snitz Forums Admin
    
Portugal
26364 Posts |
|
|
Topic  |
|