Correct the name of the new digest_algorithm column

This commit is contained in:
Mark H. Wood
2012-08-03 13:41:45 -04:00
parent b728a42739
commit f6d6db4343

View File

@@ -898,7 +898,7 @@ public class EPerson extends DSpaceObject
{
PasswordHash hash = null;
try {
hash = new PasswordHash(myRow.getStringColumn("digestAlgorithm"),
hash = new PasswordHash(myRow.getStringColumn("digest_algorithm"),
myRow.getStringColumn("salt"),
myRow.getStringColumn("password"));
} catch (DecoderException ex) {