Skip to content

Commit

Permalink
fixed an issue in formated strings ("%S" was not replaced)
Browse files Browse the repository at this point in the history
  • Loading branch information
lieser committed Jun 30, 2014
1 parent 9348e32 commit f862d11
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.2.1 [2014-06-30]
------------------
- fixed an issue in formated strings ("%S" was not replaced)

1.2.0 [2014-06-25]
------------------
- added option for sign rules to allow also subdomains of the SDIDs (enabled by default)
Expand Down
2 changes: 1 addition & 1 deletion install.rdf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<em:name>DKIM Verifier</em:name>
<em:description>Verifies the DKIM-Signature of an e-mail.</em:description>

<em:version>1.2.0</em:version>
<em:version>1.2.1</em:version>

<em:creator>Philippe Lieser</em:creator>

Expand Down
4 changes: 2 additions & 2 deletions modules/helper.jsm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* helper.jsm
*
* Version: 1.2.0 (25 June 2014)
* Version: 1.2.1 (30 June 2014)
*
* Copyright (c) 2013-2014 Philippe Lieser
*
Expand Down Expand Up @@ -64,7 +64,7 @@ dkimStrings.getString = dkimStrings.stringbundle.GetStringFromName;
dkimStrings.getFormattedString = function (key, strArray) {
"use strict";

return dkimStrings.stringbundle.GetStringFromName(key, strArray, strArray.length);
return dkimStrings.stringbundle.formatStringFromName(key, strArray, strArray.length);
};


Expand Down

0 comments on commit f862d11

Please sign in to comment.