diff --git a/pom.xml b/pom.xml
index 5b5f656..110f983 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
4.0.0
de.tilman
next-transactions
- 1.5.14
+ 1.5.15
org.springframework.boot
diff --git a/src/main/resources/static/app/import.html b/src/main/resources/static/app/import.html
index 2450868..50e9a10 100644
--- a/src/main/resources/static/app/import.html
+++ b/src/main/resources/static/app/import.html
@@ -25,7 +25,7 @@
SELECT FORMATDATETIME(t.date,'dd.MM.yyyy') as Date, c.name, t.amount, t.description
FROM Transaction t
JOIN Category c on (t.category_id = c.id)
-WHERE t.account_id = 1 and t.date >= parsedatetime('2016-06-01','yyyy-MM-dd')
+WHERE t.account_id = 1 and t.date >= '2016-06-01'
ORDER BY t.date ASC, t.last_change ASC
-- Kategorien-Liste für Account 1