Mr Chad
05-25-2007, 08:49 PM
postbit_quickedit issues when trying to change its template, im using the parse_templates hook. When putting this in a plugin it works fine:
$vbulletin->templatecache['postbit_quickedit'] = $vbulletin->templatecache['postbit_quickedit'];
But when putting this in:
$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...
$vbulletin->templatecache['postbit_quickedit'] = fetch_template('postbit_quickedit') . 'fook you';
$vbulletin->templatecache['postbit_quickedit'] = $vbulletin->templatecache['postbit_quickedit'];
But when putting this in:
$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...
$vbulletin->templatecache['postbit_quickedit'] = fetch_template('postbit_quickedit') . 'fook you';