Manage user registrations in REGISTER_APPROVE mode.

This commit is contained in:
fabrixxm 2011-01-04 14:46:08 +01:00
parent 2bf99df385
commit 0df91fd9a2
9 changed files with 51 additions and 2 deletions

View file

@ -77,8 +77,12 @@
if(mail == 0) { mail = ''; }
$('#mail-update').html(mail);
var intro = $(this).find('intro').text();
var register = $(this).find('register').text();
if(intro == 0) { intro = ''; }
if(register != 0 && intro != '') { intro = intro+'/'+register; }
if(register != 0 && intro == '') { intro = '0/'+register; }
$('#notify-update').html(intro);
});
}) ;
}