![]() |
conditional won't work together but work's split up?
PHP Code:
|
Should that OR be an AND?
|
Quote:
and is he not missing a ( at the beginning. should be PHP Code:
|
YEs you are right, he is also missing a leading (. He would get a syntax error on that.
|
yeah that was a typo from where i reconstructed the two conditionals to make em once
but php PHP Code:
and PHP Code:
PHP Code:
|
Like i said......change the OR to AND
|
the OR is supposed to be an AND though
basically if the userid is not the same as your userid and you don't have the usergroup permission anyway then show no permission and the second bit is if you're not a moderator then show no permission, so both are independant. |
Well if you combine 2 (or more) NOT '!' conditions they will get related.
Example of what you want: 1. If you are not the poster AND not have rights to edit (this will mean that if you are the poster, but don't have the right to edit (your own post) you still can edit): PHP Code:
- I am the poster, and i have rights to edit. The above is NOT true, so no error msg. - I am the poster, and i have NO rights to edit. The above is NOT true (the first part of the condition is false), so no error msg. - I am NOT the poster, and i have rights to edit. The above is NOT true, so no error msg. - I am the NOT poster, and i have NO rights to edit. The above is true, so i get a no permission page. Now the second part: PHP Code:
PHP Code:
PHP Code:
- User is same, C2 is TRUE (making the test false!!!), and C3 is FALSE(he is not a moderator, making this test true. So we have here a user, who made this post, have edit rights and is not a moderator, this would result in: 1. post_user != cur_user......FALSE (the user is the same) 2. !C2....FALSE (the user has permission to edit) 3. !C3....TRUE (the user is not a moderator) this will result in: Code:
((FALSE AND FALSE) OR (TRUE)) Code:
(FALSE OR TRUE) Code:
TRUE PHP Code:
|
Let's see what can happen:
- I am the poster, and i have rights to edit. The above is NOT true, so no error msg. correct and working as intended - I am the poster, and i have NO rights to edit. The above is NOT true (the first part of the condition is false), so no error msg. incorrect should see error message - I am NOT the poster, and i have rights to edit. The above is NOT true, so no error msg. correct and working as intended - I am the NOT poster, and i have NO rights to edit. The above is true, so i get a no permission page. correct and working as intended I guess what we want here is that a moderator (spelling mistake in the permission??) can always edit, no matter if he made the post himself. If not combined with other conditions this would be ok. But now let's see what happens if we combine: correct so far PHP Code:
so bascially let me try and do this in conditionals to try and explain myself PHP Code:
PHP Code:
|
What my code does is:
If they are NOT (poster AND have edit perms) AND are NOT a moderator: Error message Edit wrong! |
What the code should do is:
If they are NOT original_poster OR are NOT a_moderator: Error message (that's simplified cos i left out the check to make sure they have permission to edit their own posts) |
Let's do this again
PHP Code:
PHP Code:
|
that didn't work so let's simplify the original code
PHP Code:
PHP Code:
|
Now let's add the moderator part. Let's simplify by making the above into 1 condition, so:
PHP Code:
PHP Code:
1. Can NOT edit, is NOT moderator, this will give: PHP Code:
2. Can edit, is NOT moderator, this will give: PHP Code:
3. Can NOT edit, is moderator, this will give: PHP Code:
Now let's see the same with an AND: PHP Code:
1. Can NOT edit, is NOT moderator, this will give: PHP Code:
2. Can edit, is NOT moderator, this will give: PHP Code:
3. Can NOT edit, is moderator, this will give: PHP Code:
Quote:
|
ok so how do i get it to show
PHP Code:
PHP Code:
PHP Code:
|
Lol now you are confusing me.
What you will want is: PHP Code:
PHP Code:
|
Talk about over-thinking things :)
PHP Code:
|
Quote:
|
win for the overthinking :p your code never worked :(
but PHP Code:
|
So you give up? I am sure one of my codes worked ;)
|
i'm pretty sure your codes were allowing me to edit no matter what or showing me no_permission no matter what but i'll have to play wit it in the morning marco as the original idea of using the almighty conditional is still favourable to me, especially as i have to replicate it for showing the "EDIT" link.
|
Quote:
|
works like a charm marco :D thank you :)
still aint sunk in how it works properly but i'll read it in the morning and no doubt it'll make perfect sense :) |
All times are GMT. The time now is 07:32 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 | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|