Yay! Thanks so much for all your hard work. I can’t wait to upgrade!
Oh, goodie! I’ve already upgraded one of my sites to 2.5 and I love it, but another is integrated with WP (after much heartache and pain) and I don’t want to upgrade if it’s going to break it!
To clarify – on or about line 75, find:
$scripturl = bb_get_option ('uri') . 'my-plugins/js_quicktags.js';
$thisurl = bb_get_option ('uri') . 'my-plugins/' . basename(__FILE__);
Change to:
$scripturl = bb_get_option ('uri') . '/my-plugins/js_quicktags.js';
$thisurl = bb_get_option ('uri') . '/my-plugins/' . basename(__FILE__);
In short, change the two instances of my-plugins/ to /my-plugins/
Great plugin, thanks!
Oops, take that back. Thanks anyway!
Just what I was looking for, thanks!