summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2020-12-20 23:12:45 +0300
committerAndrew Dolgov <[email protected]>2020-12-20 23:12:45 +0300
commitf59c567831662fc78a570c785027e6e7b1c31880 (patch)
treec0bbb8dfbf056856f1edf26b0dd5ddefc71fc833 /include
parent5f733604f012cae86691d20a2c5eac2e4fa36aa6 (diff)
update_rss_feed: fix BLACKLISTED_TAGS not working properly, simplify tag-related code
Diffstat (limited to 'include')
-rw-r--r--include/functions.php6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/functions.php b/include/functions.php
index a70b4ac44..f1cce0bbf 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -396,12 +396,6 @@
return uniqid(base_convert(rand(), 10, 36));
}
- function trim_array($array) {
- $tmp = $array;
- array_walk($tmp, 'trim');
- return $tmp;
- }
-
function T_sprintf() {
$args = func_get_args();
return vsprintf(__(array_shift($args)), $args);