I got over my lazy spell and updated this hack so that you can change premium member's styles from the admin control panel. The text file has been updated.
If you have already installed it, you simply need to do this in user.php:
Find:
Code:
// returns a combo box containing a list of titles in the $tablename table.
// allows specification of selected value in $selvalue
global $DB_site,$bgcounter;
Replace With:
Code:
// returns a combo box containing a list of titles in the $tablename table.
// allows specification of selected value in $selvalue
global $DB_site,$bgcounter,$user;
Find:
Code:
$result=$DB_site->query("SELECT title,$tableid FROM $tablename WHERE userselect=1 ORDER BY title");
Replace With:
Code:
if ($user[premium]){
$result=$DB_site->query("SELECT title,$tableid FROM $tablename WHERE userselect>0 ORDER BY title");
}
else {
$result=$DB_site->query("SELECT title,$tableid FROM $tablename WHERE userselect=1 ORDER BY title");
}