I'm coding an add-on for vbulletin at the moment, but stuck on something really basic. (typical... all the tricky bits are working).
I just need to check whether a string contains a certain value. I've already pulled an additional variable in on showthread.php ($userbadge) and just want to do the equivalent of
PHP Code:
if (stristr($post['haystack'],"needle"){
// do something
}
Just not very familiar with vbulletin templates, so a pointer at this stage would be really helpful.
from what I have managed to find out, I think that conditions only let you apply very limited PHP functions. One solution would be to add to the functions that can be used - can this be done?
Thanks.