The Arcive of vBulletin Modifications Site. |
|
Fixed typo in the threadfonttitle action... (Now it works) Details »»
|
|||||||||||||||||||||||||||
|
Fixed typo in the threadfonttitle action... (Now it works)
Developer Last Online: Apr 2010
In the action threadfonttitle.
The code. Code:
// do the query to set the thread title color
$vbulletin->db->query_write("
UPDATE " . TABLE_PREFIX . $action['tablename'] . "
SET
vbp_titlefonttype = '" . addslashes($action['color']) . "'
WHERE threadid = '" . $action['threadid'] . "'
");
Code:
// do the query to set the thread title color
$vbulletin->db->query_write("
UPDATE " . TABLE_PREFIX . $action['tablename'] . "
SET
vbp_titlefonttype = '" . addslashes($action['fonttype']) . "'
WHERE threadid = '" . $action['threadid'] . "'
");
Found that out when I manually added the font string to the thread directly and it worked, so it was to do with how the action processed things, and vola. There it is. Not sure if its been mentioned yet.. but I didnt see it in search.. spent the past hour figuring it out. Show Your Support
|
|||||||||||||||||||||||||||
![]() |
|
|