diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-03-10 15:05:43 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-03-10 15:05:43 +0000 |
commit | 0ba68eebac065c77211bc2f71b5580c123122015 (patch) | |
tree | c9fbaf6d1c39320e058507c1f094f7e98b5a29d2 | |
parent | 6098703c373cc3ba9793ccf2ab5f792f98f6b516 (diff) | |
download | forums-0ba68eebac065c77211bc2f71b5580c123122015.tar forums-0ba68eebac065c77211bc2f71b5580c123122015.tar.gz forums-0ba68eebac065c77211bc2f71b5580c123122015.tar.bz2 forums-0ba68eebac065c77211bc2f71b5580c123122015.tar.xz forums-0ba68eebac065c77211bc2f71b5580c123122015.zip |
#8632
git-svn-id: file:///svn/phpbb/trunk@7164 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index f6dd702449..6514a65256 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -1322,7 +1322,7 @@ function tracking_serialize($input) { if (is_array($value)) { - $out .= $key . ':(' . tracking_serializer($value) . ');'; + $out .= $key . ':(' . tracking_serialize($value) . ');'; } else { |