From 973d91d120c6d14c2973bf897de15a1dea745396 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sat, 11 May 2019 16:42:53 +0200 Subject: add btlogger to unxmlify() --- include/text.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/include/text.php b/include/text.php index a5663fc56..6a2a9e427 100644 --- a/include/text.php +++ b/include/text.php @@ -476,6 +476,15 @@ function unxmlify($s) { return $ret; */ + + if(is_array($s)) { + + // allow to fall through so we ge a PHP error, as the log statement will + // probably get lost in the noise unless we're specifically looking for it. + + btlogger('unxmlify called with array: ' . print_r($s,true), LOGGER_NORMAL, LOG_WARNING); + } + $ret = htmlspecialchars_decode($s, ENT_QUOTES); return $ret; } -- cgit v1.2.3