Hi Abe,
cool pice...
Worked fine on a fresh 3.5.4 installation, but I had a problem when switching on the "Add Template Name in HTML Comments" feature. Got some strange errors in my browser and tracked them down to the "$post_thanks_button_image" template which gets included within a client script. The vb added comments around the template messed up in my browser...
As I'm new to vb - also new to web development so the comments help me alot - I solved this by changing two PlugIns
Code:
"Hook Location : postbit_display_start":
find: fetch_template('post_thanks_button_image')
repl: fetch_template('post_thanks_button_image',0,false)
"Hook Location : showthread_start":
find: fetch_template("post_thanks_button_image")
repl: fetch_template("post_thanks_button_image",0,false)
With this the "$post_thanks_button_image" template gets included w/o the comments, so this works fine for me. Did this on my local board, so side effects won't harm. Just wanted to say thank's and let you know...