Anyone managed to get this working yet? Have it enabled in Admin CP but no icons showing in posts?!
Announcement
Collapse
No announcement yet.
Blog This Post
Collapse
X
-
-
I have the same problem Trevster
I have upgraded to 2.0.1 and it is still not working...the image wil not show in forum post.
The image is uploaded as it should in images/misc/blog/blogpost.gif
The template "blog_postbit_blog_this_post" shows this:
Code:<a href="blog_post.php?$session[sessionurl]do=newblog&p=$post[postid]"><img src="$stylevar[imgdir_misc]/blog/blogpost.gif" title="$vbphrase[blog_this_post]" alt="" border="0" /></a>
What could be wrong ?
Comment
-
Originally posted by Jupp View PostSame issue here.
Dunno if this is the right fix, but removing
Code:AND get_class($this) == 'vB_Postbit_Post'
Code:AND strtolower(get_class($this)) == 'vb_postbit_post'
Comment
-
Originally posted by ParsonsMT View PostBase on this link: http://us2.php.net/manual/en/function.get-class.php get_class returns the class name in lower case in PHP4. If you change the code to:
Code:AND strtolower(get_class($this)) == 'vb_postbit_post'
Comment
-
-
Originally posted by ParsonsMT View PostBase on this link: http://us2.php.net/manual/en/function.get-class.php get_class returns the class name in lower case in PHP4. If you change the code to:
Code:AND strtolower(get_class($this)) == 'vb_postbit_post'
Freddie, is this something that should be added to the bug tracker for a workaround to detect PHP version?
Comment
widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
Comment