# HG changeset patch # User Kim Alvefur # Date 1315771513 -7200 # Node ID 34eb9df9e37f6218c7cbc4320f3c8fb5582b832d # Parent 22935ef372849b310b9d965a3fb67841249d329b mod_auth_wordpress: Fix hash identifier. diff -r 22935ef37284 -r 34eb9df9e37f mod_auth_wordpress/mod_auth_wordpress.lua --- a/mod_auth_wordpress/mod_auth_wordpress.lua Sun Sep 11 21:59:01 2011 +0200 +++ b/mod_auth_wordpress/mod_auth_wordpress.lua Sun Sep 11 22:05:13 2011 +0200 @@ -155,7 +155,7 @@ end local function hashGensaltPrivate(input) local iteration_count_log2 = 6; - local output = "$H$"; + local output = "$P$"; local idx = math.min(iteration_count_log2 + 5, 30) + 1; output = output .. itoa64:sub(idx, idx); output = output .. hashEncode64(input, 6);