thanks, just tried it, it gave me an error at the top of the page.
also I can run a query to find out how many users have set each style in their usercp
SELECT
user.styleid,
COUNT(user.styleid) AS total,
style.title
FROM
user
LEFT OUTER JOIN
style ON
style.styleid = user.styleid
WHERE
user.styleid <> 0
GROUP BY
styleid
ORDER BY
total
I want to know what current styles are being used. some members may ahve never set anything other than the defualt in their usercp yet changed style with style chooser numerous times.
maybe i should have a mod created to update the usercp style when they use the style selector
|