mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 13:25:54 +00:00
error handler: do not log last query, truncate error message to a smaller length
This commit is contained in:
@@ -878,6 +878,15 @@
|
||||
}
|
||||
}
|
||||
|
||||
// is not utf8 clean
|
||||
function truncate_middle($str, $max_len, $suffix = '…') {
|
||||
if (strlen($str) > $max_len) {
|
||||
return substr_replace($str, $suffix, $max_len / 2, mb_strlen($str) - $max_len);
|
||||
} else {
|
||||
return $str;
|
||||
}
|
||||
}
|
||||
|
||||
function convert_timestamp($timestamp, $source_tz, $dest_tz) {
|
||||
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user