Quote:
Originally Posted by Alfa1
1100 entries in my LDM have dead links in the description field, due to copy -pasting of text.
I need to remove all links from the description field, so that only plain text remains in that field.
Does anyone know what query I could use to do this?
|
Make a backup of the table first and run this in the sql query for local_linkslink table
Quote:
DELETE FROM `local_linkslink` WHERE `local_linkslink`.`linkdesc` LIKE '%something.com%'
|
I've not tested it but it should be pretty close to what you need