Skip to content
Snippets Groups Projects
Commit 0884deb1 authored by Patrick Barroca's avatar Patrick Barroca :grin:
Browse files

Merge branch 'hotline#16321_encoding_issue_in_dewey_table' into 'stable'

Hotline#16321 encoding issue in dewey table

See merge request !726
parents 81723901 ea96c879
Branches
Tags
4 merge requests!780Master,!740Master,!739Hotline master,!738Stable
ticket #16321: Correction des caractères 'ç' mal encodés dans la codification dewey.
<?php
$page_size = 1000;
$page = 1;
while ($dewey = Class_CodifDewey::findAllBy(['order' => 'id_dewey',
'limitPage' => [$page, $page_size]])) {
foreach ($dewey as $d) {
$libelle = $d->getLibelle();
if (preg_match('/ç/', $libelle)) {
$libelle = preg_replace('/ç/', 'ç', $libelle);
$d->setLibelle($libelle)->save();
}
}
Class_CodifDewey::clearCache();
$page++;
}
This diff is collapsed.
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment