We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f15c476 commit 69375f7Copy full SHA for 69375f7
lib/signed-xml.js
@@ -322,7 +322,7 @@ SignedXml.prototype.validateReferences = function(doc) {
322
var num_elements_for_id = 0;
323
for (var index in this.idAttributes) {
324
if (!this.idAttributes.hasOwnProperty(index)) continue;
325
- tmp_elem = select(doc, "//*[@*[local-name(.)='" + this.idAttributes[index] + "']='" + uri + "']")
+ var tmp_elem = select(doc, "//*[@*[local-name(.)='" + this.idAttributes[index] + "']='" + uri + "']")
326
num_elements_for_id += tmp_elem.length;
327
if (tmp_elem.length > 0) {
328
elem = tmp_elem;
0 commit comments