Quote:
Originally Posted by Kihon Kata
I'll ask this again:
if a user selected a status then the admin decided to change the name of the status, it still shows the old name. How can one update this?
|
Nothing can be done for this, unless you manually run an update query like
Code:
$vbulletin->db->query_write("UPDATE " . TABLE_PREFIX . "user
SET sr_away_status = 'what you want here'
WHERE sr_away_status = 'what it used to be'
");