From: ArthurHoaro Date: Sun, 8 Nov 2020 12:54:39 +0000 (+0100) Subject: Fix an issue truncating extracted metadata content X-Git-Tag: v0.12.1^2~9^2 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=00d3dd91ef42df13eeafbcc54dcebe3238e322c6;hp=00d3dd91ef42df13eeafbcc54dcebe3238e322c6;p=github%2Fshaarli%2FShaarli.git Fix an issue truncating extracted metadata content Previous regex forced the selection to stop at either the first single or double quote found, regardless of the opening quote. Using '\1', we're sure to wait for the proper quote before stopping the capture. ---