mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-11-04 09:40:05 +01:00
Merge pull request #10 from Joriom/patch-2
Fix for phpBB3 support + bonus
This commit is contained in:
commit
6deb174f9e
@ -286,6 +286,11 @@ public class MySQLThread extends Thread implements DataSource {
|
|||||||
pst.setInt(3, 0);
|
pst.setInt(3, 0);
|
||||||
pst.setInt(4, 0);
|
pst.setInt(4, 0);
|
||||||
pst.executeUpdate();
|
pst.executeUpdate();
|
||||||
|
// Update username_clean in phpbb_users
|
||||||
|
pst = con.prepareStatement("UPDATE " + tableName + " SET " + tableName + ".username_clean=? WHERE " + columnName + "=?;");
|
||||||
|
pst.setString(1, auth.getNickname().toLowerCase());
|
||||||
|
pst.setString(2, auth.getNickname());
|
||||||
|
pst.executeUpdate();
|
||||||
// Update player group in phpbb_users
|
// Update player group in phpbb_users
|
||||||
pst = con.prepareStatement("UPDATE " + tableName + " SET " + tableName + ".group_id=? WHERE " + columnName + "=?;");
|
pst = con.prepareStatement("UPDATE " + tableName + " SET " + tableName + ".group_id=? WHERE " + columnName + "=?;");
|
||||||
pst.setInt(1, Settings.getPhpbbGroup);
|
pst.setInt(1, Settings.getPhpbbGroup);
|
||||||
@ -303,6 +308,9 @@ public class MySQLThread extends Thread implements DataSource {
|
|||||||
pst.setLong(1, time);
|
pst.setLong(1, time);
|
||||||
pst.setString(2, auth.getNickname());
|
pst.setString(2, auth.getNickname());
|
||||||
pst.executeUpdate();
|
pst.executeUpdate();
|
||||||
|
// Increment num_users
|
||||||
|
pst = con.prepareStatement("UPDATE " + Settings.getPhpbbPrefix + "config SET config_value = config_value + 1 WHERE config_name = 'num_users';");
|
||||||
|
pst.executeUpdate();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (Settings.getPasswordHash == HashAlgorithm.WORDPRESS) {
|
if (Settings.getPasswordHash == HashAlgorithm.WORDPRESS) {
|
||||||
|
Loading…
Reference in New Issue
Block a user