Skip to content

Commit eb408a2

Browse files
committed
Fix BatchManager limit GPX search to gpx file extension #87
1 parent 2d80fe7 commit eb408a2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

admin/admin_batchmanager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ function osm_perform_batch_manager_prefilters($filter_sets, $prefilter)
4747
else if ($prefilter==="osm1")
4848
$filter = "`latitude` IS NULL OR `longitude` IS NULL";
4949
else if ($prefilter==="osm2")
50-
$filter = "`path` LIKE '%gpx%'";
50+
$filter = "`path` LIKE '%.gpx%'";
5151

5252
if ( isset($filter) )
5353
{

0 commit comments

Comments
 (0)