I'm currently using vBulletin with an additional product/plugin that allows users to fill out a form with some information.
After doing this, they are able to submit it. The form is then 'prettied' up and made into a readable post in a known format.
Each post is added as a new thread to a selected forum.
The problem is, I'd like to be able to post this to multiple (namely, two) at the same time.
I believe I've narrowed the code down to this section here, that does the posting.
You must first be a
registered member to view any code.
So I figured I could extend this to just repeat the small snippet and post again to another forum. So I added the following code in place of the comment above:
You must first be a
registered member to view any code.
The problem I am encountering is that, this works for the admin account; both posts are made successfully.
If I try this with regular user account (that have permissiong to post in both forums), only the first post goes through (the 'intended' forum, per the plugin).
What am I missing that is stopping this from working?