diff options
Diffstat (limited to 'includes/media/IPTC.php')
-rw-r--r-- | includes/media/IPTC.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/media/IPTC.php b/includes/media/IPTC.php index 478249fe..0eb27cc8 100644 --- a/includes/media/IPTC.php +++ b/includes/media/IPTC.php @@ -456,7 +456,7 @@ class IPTC { //treat as utf-8 if is valid utf-8. otherwise pretend its windows-1252 // most of the time if there is no 1:90 tag, it is either ascii, latin1, or utf-8 $oldData = $data; - UtfNormal::quickIsNFCVerify( $data ); //make $data valid utf-8 + UtfNormal\Validator::quickIsNFCVerify( $data ); //make $data valid utf-8 if ( $data === $oldData ) { return $data; //if validation didn't change $data } else { |