> } else {
> - current = value;
> + current = (value)?value:'';
If I remember correctly, jslint wants:
current = value || '';
I tried to verify that with:
# cd pve-manager/www/manager6
# make lint
but that is broken and throws a bunch of errors. Please
can we fix this first?