Skip to content
Snippets Groups Projects
Commit 12132607 authored by Ghislain Loas's avatar Ghislain Loas
Browse files

add script to urldecode libraries fields

parent 0f87be96
Branches
Tags
5 merge requests!1553Master,!1502Master,!1501Stable,!1363Master,!1362Master
<?php
require('console.php');
foreach(Class_Bib::findAll() as $library) {
$library->setInscription(trim(urldecode($library->getInscription())));
$library->setPret(trim(urldecode($library->getPret())));
$library->setFond(trim(urldecode($library->getFond())));
$library->setAnnexe(trim(urldecode($library->getAnnexe())));
$library->setHoraire(trim(urldecode($library->getHoraire())));
$library->save();
}
?>
\ No newline at end of file
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