Fix de bugs

This commit is contained in:
Pierre-Lin Bonnemaison 2015-08-09 21:58:31 +02:00
parent 2533caf1e9
commit 721e1e774a
11 changed files with 23 additions and 22 deletions

View file

@ -121,7 +121,7 @@
var url = jQuery(this).attr('href');
jQuery(target).find('input:checked').each(function ()
{
url += '/users' + jQuery(this).val() + '_' + jQuery(this).val();
url += '/' + jQuery(this).val();
});
window.location = url;
});