Quote:
Originally Posted by Athena1984
For some reason this interferes with Vaultwiki and iBid. When Vault Wiki is enabled on my forum and I go to edit an image, the display is distorted and there are two error messages at the top and with iBid, when viewing the image the Auctions tab is selected. When I disable both products everything works well. I will contact Vault Wiki about the error messages because the error is coming from those files.
EDIT: I contacted vault wiki and was told
"Scripts that use vBulletin's editor need to make sure they load the following $specialtemplates:
Code:
'smiliecache',
'bbcodecache',
vBulletin needs these caches to create a number of editor buttons, including VaultWiki buttons."
How do I go about fixing this?
|
If you open dbtgallery.php and find
PHP Code:
$specialtemplates = array(
'dbtech_gallery_instances'
);
and replace it with
PHP Code:
$specialtemplates = array(
'dbtech_gallery_instances',
'smiliecache',
'bbcodecache'
);
That should fix it. I'll include that in the next package.
Dylan