You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/view.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -223,7 +223,7 @@ function saveMarkers() {
223
223
var lat = newMarkers[i].getPosition().lat();
224
224
var long = newMarkers[i].getPosition().lng();
225
225
//TODO add passing in gps_date column, parsing from current date/time and adding editing for this field on edit marker page
226
-
var url = "insertRecord.php?insert=true&table=gps_entries&gps_latitude=" + lat + "&gps_longitude=" + long + "&gps_entry_date=now()&gps_name=" + newMarkers[i].name;
226
+
var url = "insertRecord.php?insert=true&table=gps_entries&gps_latitude=" + lat + "&gps_longitude=" + long + "&gps_entry_date=now()&gps_date=now()&gps_name=" + newMarkers[i].name;
0 commit comments