av8or1
05-08-2011, 12:28 AM
Hi-
I am trying to add a post from a custom script. In these posts I want to allow links to images on other websites and to have the HTML code contained in the post honored without setting the "Allow HTML" option for the forum in question to "Yes". IOW, when you post via the vB quick reply or advanced webpage, it allows you to enter links to other websites for pictures, etc. Then when you View -> Source of that result from your browser, you see this:
the trend is sure<br />
catching up, my cousin shot a picture of this in my town recently <br /><br />
<p><img src="http://somewebsite/blah/blah/blah.jpg" /> </p><br />
<a href="http://somewebsite.com/" rel="nofollow" class="external">http://somewebsite.com/</a>
However when I add the same post via my script I get this:
<br />the trend is sure<br />
catching up, my cousin shot a picture of this in my town recently <br /><br />
<p><img src="http://somewebsite/blah/blah/blah.jpg" /> </p><br />
<a href="http://somewebsite.com/" rel="nofollow" class="external">http://somewebsite.com/</a>
And of course the former is rendered just like you'd expect and want, while the latter shows up as just a bunch of HTML code in your post, thus:
<br />the trend is sure
catching up, my cousin shot a picture of this in my town recently <br />
<p><img src="http://somewebsite/blah/blah/blah.jpg" /> </p>
<a href="http://somewebsite.com/" rel="nofollow" class="external">http://somewebsite.com/</a>
So it's almost as though the pagetext from the post is run through htmlentities or some equivalent prior to being entered in the DB. I did a search through the code base and only found one htmlentities call and it didn't seem appropriate, so I kept looking at other options. I went through the newreply.php source and did a search on this forum but didn't find anything. I finally decided to give up the ghost and ask, as I am trying to wrap this work up.
So ... anyone know how to prevent this behavior when creating a post from a script without enabling "Allow HTML" via the admincp? I know it can be done because I have that option turned off right now and I get the results shown above.
Thanks!
I am trying to add a post from a custom script. In these posts I want to allow links to images on other websites and to have the HTML code contained in the post honored without setting the "Allow HTML" option for the forum in question to "Yes". IOW, when you post via the vB quick reply or advanced webpage, it allows you to enter links to other websites for pictures, etc. Then when you View -> Source of that result from your browser, you see this:
the trend is sure<br />
catching up, my cousin shot a picture of this in my town recently <br /><br />
<p><img src="http://somewebsite/blah/blah/blah.jpg" /> </p><br />
<a href="http://somewebsite.com/" rel="nofollow" class="external">http://somewebsite.com/</a>
However when I add the same post via my script I get this:
<br />the trend is sure<br />
catching up, my cousin shot a picture of this in my town recently <br /><br />
<p><img src="http://somewebsite/blah/blah/blah.jpg" /> </p><br />
<a href="http://somewebsite.com/" rel="nofollow" class="external">http://somewebsite.com/</a>
And of course the former is rendered just like you'd expect and want, while the latter shows up as just a bunch of HTML code in your post, thus:
<br />the trend is sure
catching up, my cousin shot a picture of this in my town recently <br />
<p><img src="http://somewebsite/blah/blah/blah.jpg" /> </p>
<a href="http://somewebsite.com/" rel="nofollow" class="external">http://somewebsite.com/</a>
So it's almost as though the pagetext from the post is run through htmlentities or some equivalent prior to being entered in the DB. I did a search through the code base and only found one htmlentities call and it didn't seem appropriate, so I kept looking at other options. I went through the newreply.php source and did a search on this forum but didn't find anything. I finally decided to give up the ghost and ask, as I am trying to wrap this work up.
So ... anyone know how to prevent this behavior when creating a post from a script without enabling "Allow HTML" via the admincp? I know it can be done because I have that option turned off right now and I get the results shown above.
Thanks!