Quote:
Originally Posted by bposner
|
Lets try something else.
In the ACP
ACP -> Styles & Templates -> Style Manager
Whatever your default style is, on the dropdown select Edit Settings.
That will give you the style id, like the default style has an id of 8.
Now open admincp/garage_manage.php
Find
PHP Code:
$cache_template_query = $vbulletin->db->query_read("SELECT title, template FROM " . TABLE_PREFIX . "template WHERE product = 'cnd_garage' AND styleid = '-1'");
at the end, where it has styleid = '-1' replace the -1 with whatever your styleid is. So if it's 8 you'll end up with
PHP Code:
$cache_template_query = $vbulletin->db->query_read("SELECT title, template FROM " . TABLE_PREFIX . "template WHERE product = 'cnd_garage' AND styleid = '8'");
After that rebuild the postbit and see if it fixes the broken link title.