This commit is contained in:
@@ -323,8 +323,9 @@ function check_deployment(additional) {
|
||||
function deploy(additional) {
|
||||
pars = '';
|
||||
jQuery('input.additional_field').each(function(index) {
|
||||
console.log('Field ' + $(this).attr('id') + ': ' + $(this).val());
|
||||
pars += '&'+$(this).attr('id') + '=' + $(this).val();
|
||||
console.log('Field ' + $(this).attr('name') + ': ' + $(this).val());
|
||||
//pars += '&'+$(this).attr('id') + '=' + $(this).val();
|
||||
pars += '&'+$(this).attr('name') + '=' + $(this).val();
|
||||
});
|
||||
//console.log(pars);
|
||||
var url = 'scan.php?op=deploy&additional='+additional+pars;
|
||||
|
Reference in New Issue
Block a user