diff --git a/cosmogramme/php/classes/classe_iso2709.php b/cosmogramme/php/classes/classe_iso2709.php index f418c920bab3926cd4e3d415cb4d0ce42a576d87..2b143caa3b8eb96f8ac8e096d9e08596251d965c 100644 --- a/cosmogramme/php/classes/classe_iso2709.php +++ b/cosmogramme/php/classes/classe_iso2709.php @@ -619,7 +619,7 @@ class iso2709_record { public function ISO_decode($chaine) { if (!isset($this->_iso_decode_table)) $this->_initISODecodeTable(); - xdebug_break(); + return str_replace($this->_iso_decode_table_2709, $this->_iso_decode_table_utf8, $chaine); } diff --git a/library/Class/Article.php b/library/Class/Article.php index de369a288e59398e3ac5d3caf8ce515e09456599..0fd9cd451bfeabef118155ec02947a659f22ac61 100644 --- a/library/Class/Article.php +++ b/library/Class/Article.php @@ -772,7 +772,6 @@ class Class_Article extends Storm_Model_Abstract { protected function _sendMailToAdmin() { - xdebug_break(); $mail = new ZendAfi_Mail('utf8'); $all_admins=Class_Users::findAllBy(['role_level' => ZendAfi_Acl_AdminControllerRoles::ADMIN_PORTAIL]); $mails=[]; diff --git a/library/Class/SitothequeCategorie.php b/library/Class/SitothequeCategorie.php index 6418bdfaa8f2b8d2d9e0c20fc1a64d83159b2fe5..42030dabbd1ff328edb84413c76d2caf33d512ee 100644 --- a/library/Class/SitothequeCategorie.php +++ b/library/Class/SitothequeCategorie.php @@ -74,7 +74,6 @@ class Class_SitothequeCategorie extends Storm_Model_Abstract { * @return array */ public function getRecursiveSousCategories() { - xdebug_break(); $all_categories = $sous_categories = $this->getSousCategories(); foreach ($sous_categories as $categorie) $all_categories = array_merge($all_categories, $categorie->getRecursiveSousCategories()); diff --git a/library/Class/WebService/SIGB/Pergame/Service.php b/library/Class/WebService/SIGB/Pergame/Service.php index 89f2b0eb77fba73163e3336af682d6eec2b43a45..269ff55de34e1f0b42544a801f7695ecf9d87d11 100644 --- a/library/Class/WebService/SIGB/Pergame/Service.php +++ b/library/Class/WebService/SIGB/Pergame/Service.php @@ -105,7 +105,6 @@ class Class_WebService_SIGB_Pergame_Service extends Class_WebService_SIGB_Abstra public function reserverExemplaire($user, $exemplaire, $code_annexe) { - xdebug_break(); return $this->getLegacyService()->reserverExemplairePergame($this->_id_bib, $exemplaire, $code_annexe); diff --git a/tests/application/modules/opac/controllers/ProfilOptionsControllerTest.php b/tests/application/modules/opac/controllers/ProfilOptionsControllerTest.php index 8790d010ea3ad7db5407b561dcf1801a1439e2b4..d40426f8e40624ad1c774b6f33a3625ee941e006 100644 --- a/tests/application/modules/opac/controllers/ProfilOptionsControllerTest.php +++ b/tests/application/modules/opac/controllers/ProfilOptionsControllerTest.php @@ -19,7 +19,6 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ require_once 'AbstractControllerTestCase.php'; -xdebug_break(); abstract class ProfilOptionsControllerWithProfilAdulteTestCase extends AbstractControllerTestCase { protected function _loginHook($account) {