Fixed Typo on AddRequest.getAttribute

This commit is contained in:
Pedro Palazón Candel 2013-10-08 19:57:53 +02:00
parent 4097a777e9
commit 6c00badd95
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ AddRequest.prototype.getAttribute = function (name) {
for (var i = 0; i < this.attributes.length; i++) {
if (this.attributes[i].type === name)
return this.attribute[i];
return this.attributes[i];
}
return null;