diff options
author | webzwo0i <webzwo0i@c3d2.de> | 2014-12-14 22:01:28 +0100 |
---|---|---|
committer | webzwo0i <webzwo0i@c3d2.de> | 2014-12-14 22:01:28 +0100 |
commit | 5d15f655f0d697995e221c19e707fc9ff05faaa2 (patch) | |
tree | 19e9a6a44d2a8c808766f45516b986d2f8a6e5a7 /src/node/db/Pad.js | |
parent | 1932d240e5689370ab4cee4374ff3c198807d9d6 (diff) | |
download | etherpad-lite-5d15f655f0d697995e221c19e707fc9ff05faaa2.zip |
dont make local variables global
Diffstat (limited to 'src/node/db/Pad.js')
-rw-r--r-- | src/node/db/Pad.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node/db/Pad.js b/src/node/db/Pad.js index 4670696a..2791334b 100644 --- a/src/node/db/Pad.js +++ b/src/node/db/Pad.js @@ -135,7 +135,7 @@ Pad.prototype.getRevisionDate = function getRevisionDate(revNum, callback) { Pad.prototype.getAllAuthors = function getAllAuthors() { var authors = []; - for(key in this.pool.numToAttrib) + for(var key in this.pool.numToAttrib) { if(this.pool.numToAttrib[key][0] == "author" && this.pool.numToAttrib[key][1] != "") { |