postbit_quickedit issues when trying to change its template, im using the parse_templates hook. When putting this in a plugin it works fine:
PHP Code:
$vbulletin->templatecache['postbit_quickedit'] = $vbulletin->templatecache['postbit_quickedit'];
But when putting this in:
PHP Code:
$vbulletin->templatecache['postbit_quickedit'] = $vbulletin->templatecache['postbit_quickedit'] . '';
It kills the edit box, not sure how to do the quick edit template, trying to avoid template edits so if anyone knows anything i would be very happy to hear from you.
nevermind figured it out on my own...
PHP Code:
$vbulletin->templatecache['postbit_quickedit'] = fetch_template('postbit_quickedit') . 'fook you';