From 93a4d93d232e04f8302eb1898e62a1fa64d163f5 Mon Sep 17 00:00:00 2001 From: Mickael Maillot Date: Wed, 18 Jun 2025 12:35:01 +0200 Subject: [PATCH] Fix , in long TXT data --- src/Records/RData.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Records/RData.php b/src/Records/RData.php index 3c71546..d95f3d0 100644 --- a/src/Records/RData.php +++ b/src/Records/RData.php @@ -55,7 +55,7 @@ public function __toString() if ($handler = $this->typeDef->getToStringFunction()) { $result = \call_user_func_array($handler, $this->fields); } else { - $result = \implode(',', $this->fields); + $result = \implode('', $this->fields); } return $result;