Quote:
Originally Posted by Kunani
Great work, thanks!
I do have ONE problem. When I login I get the error that the vbulletin.css was not found and that my setup is not saving to a file. HOWEVER it is and I noticed the directory for the default theme I'm using is wrong, probably related to this bug fix:
Fixed style00000 bug on redirect pages - now defaults to style id 1.
Instead of the folder being: /style00001l/
It is showing in the error text: /style00000l/
As if the 1 is never added into the 5 zero pad.
Disable the css feature and it defaults to normal with no errors.
|
Actually, quick fix, moved this segment inside function vbsc_curstyle()
$dir = sprintf("style%05d%s", $sid, strcasecmp($vbulletin->datastore->registry->stylevars['textdirection']['string'], 'ltr') == 0 ? 'l' : 'r');
to just above the: return $dir;