This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Create domain. | |
db.Domain.insert({name: "foo.synduit.com", active: true, fromEmail: "[email protected]"}); | |
var domain = db.Domain.findOne({name: "foo.synduit.com"}); | |
db.Subscriber.insertMany( [ | |
{ name: "Subscriber1", domain: domain._id, active: true }, | |
{ name: "Subscriber2", domain: domain._id, active: true }, | |
{ name: "Subscriber3", domain: domain._id, active: true }, | |
] ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Create domain. | |
db.Domain.insert({name: "foo.synduit.com", active: true, fromEmail: "[email protected]"}); | |
var domain = db.Domain.findOne({name: "foo.synduit.com"}); | |
// Create category. | |
db.Category.insert({name: "Group", type: "multiple", domain: domain._id}); | |
var categoryDoc = db.Category.find({domain: domain._id, name: "Group"}); | |
var category = categoryDoc.next(); | |
// Create term. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/CHANGELOG.txt b/CHANGELOG.txt | |
index 90df08960a..799b80036b 100644 | |
--- a/CHANGELOG.txt | |
+++ b/CHANGELOG.txt | |
@@ -1,4 +1,8 @@ | |
+Drupal 7.58, 2018-03-28 | |
+----------------------- | |
+- Fixed security issues (multiple vulnerabilities). See SA-CORE-2018-002. | |
+ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test file |