From 3edf35af74f473893ebcc9417aa1a0f2a5cc7de8 Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Fri, 28 Jun 2019 00:02:50 +0000
Subject: [PATCH] Add web application manifests (no service worker yet)

---
 stops.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/stops.php b/stops.php
index 48d36b2..16eab82 100644
--- a/stops.php
+++ b/stops.php
@@ -12,7 +12,7 @@
 	$pdo = new PDO('sqlite:stops/stops.db', NULL, NULL, array(
 		PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION
 	));
-	$st = $pdo->prepare('SELECT DISTINCT id FROM stop_search WHERE word LIKE ?');
+	$st = $pdo->prepare('SELECT DISTINCT id FROM stop_search WHERE word LIKE ? AND id LIKE \'t%\'');
 	
 	// Split stop name into words
 	$words = split_stop_name($_GET['query']);

--
Gitblit v1.9.1