James Moger
2013-05-07 5c36f8425345b48adc354def8ed1443b4a236a20
[authority] Fixed out of bounds exception on cert generation for a filtered user
2 files modified
5 ■■■■■ changed files
releases.moxie 1 ●●●● patch | view | raw | blame | history
src/main/java/com/gitblit/authority/GitblitAuthority.java 4 ●●●● patch | view | raw | blame | history
releases.moxie
@@ -12,6 +12,7 @@
     - Added more error checking to blob page and blame page
     - Disable SNI extensions for client SSL connections
     - Fixed prettify language extension loading
     - Fixed index out of bounds exceptions when generating client certificates for a user when the user's table has bene filtered
     - Use bash instead of sh in Linux/OSX shell scripts (issue 154)
     - Fix NPE when getting user's fork without repository list caching (issue 182)
     - Fix internal error on folder history links (issue 192)
src/main/java/com/gitblit/authority/GitblitAuthority.java
@@ -464,9 +464,9 @@
                
                // refresh user
                ucm.certs = null;
                int modelIndex = table.convertRowIndexToModel(table.getSelectedRow());
                int selectedIndex = table.getSelectedRow();
                tableModel.fireTableDataChanged();
                table.getSelectionModel().setSelectionInterval(modelIndex, modelIndex);
                table.getSelectionModel().setSelectionInterval(selectedIndex, selectedIndex);
                
                if (sendEmail) {
                    sendEmail(user, metadata, zip);