Return-Path: X-Original-To: apmail-manifoldcf-commits-archive@www.apache.org Delivered-To: apmail-manifoldcf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A777C10A94 for ; Sun, 21 Jul 2013 23:59:57 +0000 (UTC) Received: (qmail 31485 invoked by uid 500); 21 Jul 2013 23:59:57 -0000 Delivered-To: apmail-manifoldcf-commits-archive@manifoldcf.apache.org Received: (qmail 31444 invoked by uid 500); 21 Jul 2013 23:59:57 -0000 Mailing-List: contact commits-help@manifoldcf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@manifoldcf.apache.org Delivered-To: mailing list commits@manifoldcf.apache.org Received: (qmail 31437 invoked by uid 99); 21 Jul 2013 23:59:57 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Jul 2013 23:59:57 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Jul 2013 23:59:55 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 66B062388ABA; Sun, 21 Jul 2013 23:59:34 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1505535 - in /manifoldcf/trunk: CHANGES.txt connectors/jdbc/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/jdbc/JDBCAuthority.java Date: Sun, 21 Jul 2013 23:59:34 -0000 To: commits@manifoldcf.apache.org From: kwright@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20130721235934.66B062388ABA@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: kwright Date: Sun Jul 21 23:59:33 2013 New Revision: 1505535 URL: http://svn.apache.org/r1505535 Log: Fix for CONNECTORS-756. Modified: manifoldcf/trunk/CHANGES.txt manifoldcf/trunk/connectors/jdbc/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/jdbc/JDBCAuthority.java Modified: manifoldcf/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/manifoldcf/trunk/CHANGES.txt?rev=1505535&r1=1505534&r2=1505535&view=diff ============================================================================== --- manifoldcf/trunk/CHANGES.txt (original) +++ manifoldcf/trunk/CHANGES.txt Sun Jul 21 23:59:33 2013 @@ -5,6 +5,9 @@ $Id$ ======================= Release 1.3 ===================== +CONNECTORS-756: Fix broken JDBC authority UI. +(Karl Wright) + CONNECTORS-755: ant rat-sources finds unlicensed files in alfresco connector (Karl, Wright, Piergiorgio Lucidi) Modified: manifoldcf/trunk/connectors/jdbc/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/jdbc/JDBCAuthority.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/jdbc/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/jdbc/JDBCAuthority.java?rev=1505535&r1=1505534&r2=1505535&view=diff ============================================================================== --- manifoldcf/trunk/connectors/jdbc/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/jdbc/JDBCAuthority.java (original) +++ manifoldcf/trunk/connectors/jdbc/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/jdbc/JDBCAuthority.java Sun Jul 21 23:59:33 2013 @@ -366,7 +366,7 @@ public class JDBCAuthority extends BaseA if (databasePassword == null) { databasePassword = ""; } else { - databasePassword = out.mapPasswordToKey(password); + databasePassword = out.mapPasswordToKey(databasePassword); } String lIdQuery = parameters.getParameter(JDBCConstants.databaseUserIdQuery); if (lIdQuery == null) {