Skip to content

Commit

Permalink
closes #1449 which was preventing checklist polyaid from opening (#1458)
Browse files Browse the repository at this point in the history
  • Loading branch information
MuchQuak authored Jul 1, 2024
1 parent e7ae01c commit b430331
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion checklists/checklistadminmeta.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ function openMappingAid() {

function openMappingPolyAid() {
var latDec = document.getElementById("decimallatitude").value;
var lngDec = document.getElementById("decimallongtitude").value;
var lngDec = document.getElementById("decimallongitude").value;
mapWindow=open("<?php echo $CLIENT_ROOT; ?>/checklists/tools/mappolyaid.php?clid=<?php echo $clid; ?>&formname=editclmatadata&latname=latcentroid&longname=longcentroid&latdef="+latDec+"&lngdef="+lngDec,"mapaid","resizable=0,width=1000,height=800,left=20,top=20");
if(mapWindow.opener == null) mapWindow.opener = self;
}
Expand Down

0 comments on commit b430331

Please sign in to comment.