XF 1.2 Update Quote info?

Valter

Active member
Licensed customer
Hi,

is there a way to update quote info in XF? I would like to have actual usernames shown in quote blocks.
 
It can also be done with a simple query:
Code:
UPDATE xf_post SET message = REPLACE(message,'current_content','new_content');
 
I know it can be done by running that query but it must be done one by one. Some script which would read post_id from the quote block then check for current user_id and update username in quote block would be nice. But it's OK, I can live with this... :-)
 
Back
Top Bottom