Thanks.
I'm afraid to run a query. )
Can I find in phpmyadmin ' 'where custome_title like 0, and replace 0 one by one manually? It's kinda the same. I'm asking because several years ago I ve been told by someone from XF team (maybe even you) to never ever change anything in db manually (not via XF interface)
In my case I have users with all sorts of different numbers beyond 0. It looks to be related to an old vBulletin import? Assume that at some point the Xenforo behavior for these imported users changed.
I ran this query, based on the contributions above, to fix:
Code:
UPDATE xf_user
SET custom_title = ''
WHERE custom_title REGEXP '(^|[^0-9])(0?[0-9]|1[0-9]|2[0-9]|30)([^0-9]|$)';