Florian Zschocke
2013-07-10 cb946fa57e9dd4ca0853f079331c73dc0331c1e7
src/main/java/com/gitblit/RedmineUserService.java
@@ -135,7 +135,7 @@
        user.accountType = getAccountType();
        user.displayName = current.user.firstname + " " + current.user.lastname;
        user.emailAddress = current.user.mail;
        user.password = ExternalAccount;
        user.password = Constants.EXTERNAL_ACCOUNT;
        if (!StringUtils.isEmpty(current.user.login)) {
           // only admin users can get login name
           // evidently this is an undocumented behavior of Redmine
@@ -158,7 +158,7 @@
        String url = this.settings.getString(Keys.realm.redmine.url, "");
        if (!url.endsWith("/")) {
           url.concat("/");
           url = url.concat("/");
        }
        HttpURLConnection http;
        if (username == null) {