yeah, it's jquery. / #5425

The code can be found in js/listFunctions.js:

The normal clicks are already de-assigned for normal links.

    /**
    * prevent normal links from being overwritten by row toggling
    */
    $('table.list a').click
    (
        function(e)
        {
            document.location.href= this.href;
            return false
        }
    );