revert logger

This commit is contained in:
DNx5
2015-09-15 23:37:33 +07:00
parent 1de2705840
commit cdfdc06312
2 changed files with 2 additions and 2 deletions
@@ -41,7 +41,7 @@ public class PHPBB implements EncryptionMethod {
iteration_count_log2 = 8;
}
String output = "$H$";
output += itoa64.charAt(Math.min(iteration_count_log2 + 3, 30));
output += itoa64.charAt(Math.min(iteration_count_log2 + 3, 30)); // PHP_VERSION >= 5 ? 5 : 3
output += _hash_encode64(input, 6);
return output;
}