Skip to content

Commit

Permalink
Fixed issue #9453: URL parameters limited to 20 because of grid-issue
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Jan 30, 2015
1 parent 57fa5c3 commit 39cf1e5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/admin/surveysettings.js
Expand Up @@ -31,6 +31,7 @@ $(document).ready(function(){
pginput: false,
pgbuttons: false,
viewrecords: true,
rowNum: 100,
sortorder: "asc",
editurl: jsonUrl, // this is dummy existing url
emptyrecords : sNoParametersDefined,
Expand Down Expand Up @@ -77,7 +78,7 @@ function PostParameterGrid()
if (($('#allowregister').val()=='Y' || $.trim($('#emailresponseto').val())!='' || $.trim($('#emailnotificationto').val())!='')&& $.trim($('#adminemail').val())=='')
{
alert (sAdminEmailAddressNeeded);
$("#tabs").tabs("select", 0);
$("#tabs").tabs("select", 0);
$('#adminemail').focus();
return false;
}
Expand Down

0 comments on commit 39cf1e5

Please sign in to comment.