Jump to content

Revive - implode to rv_zones


wojtek

Recommended Posts

  • 3 weeks later...

If anyone encounters a problem with SQL implode to table rv_zones or any others, below I left TRIGGER to fix it.

 

DELIMITER $$
CREATE TRIGGER implode_detection_rv_zones
    BEFORE UPDATE ON rv_zones 
    FOR EACH ROW 
        BEGIN
            IF OLD.prepend <> NEW.prepend THEN
                set NEW.prepend = SUBSTRING(NEW.prepend, 1, POSITION('span><script' in NEW.prepend)+4);
            END IF;
        END
$$
DELIMITER ;

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...