Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/jsxc.nextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'build/lib/db/stanzamapper.php')
-rw-r--r--build/lib/db/stanzamapper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/lib/db/stanzamapper.php b/build/lib/db/stanzamapper.php
index f84a020..28b56f8 100644
--- a/build/lib/db/stanzamapper.php
+++ b/build/lib/db/stanzamapper.php
@@ -52,7 +52,7 @@ class StanzaMapper extends Mapper
$sql = "INSERT INTO `*PREFIX*ojsxc_stanzas` (`to`, `from`, `stanza`) VALUES(?,?,?)";
$q = $this->db->prepare($sql);
- $q->execute([$entity->getTo(), $entity->getFrom(), $xml]);
+ $q->execute([$entity->getUnSanitizedTo(), $entity->getUnSanitizedFrom(), $xml]);
}