Quote:
Originally Posted by MarkFL
You can detect if the avatars are in the file system with:
PHP Code:
$vbulletin->options['usefileavatar']
This will be an integer value of 1 if the file system is being used, and an integer value of 0 if the database is being used.
|
yeah but how does that help lol, say i were to use for the img src
Code:
$vboptions[avatarurl_2]/avatar$thread[postuserid]_1.gif
that would work by itself, without a query. but that _1 at the end is the revision number, so I would need something like $thread[postuseridAvatarRev] where the 1 is, and i dont see any way of doing this without creating queries.
I guess for now i can combine it into one product using, ill just inform that if your avatars on your file system it will create a query for avatar loaded.
Code:
if $vbulletin->options['usefileavatar'] ==1{
USE QUERIES
} ELSE {
NO QUERIES
}