diff --git a/core/views/uploads.py b/core/views/uploads.py
index 0477835..136744b 100644
--- a/core/views/uploads.py
+++ b/core/views/uploads.py
@@ -215,11 +215,11 @@ def logbookedit(request, year=None, slug=None):
place = request.POST["place"].strip().replace(' - ',' = ') # no hyphens !
title = request.POST["title"].strip()
entry = request.POST["text"].strip()
- entry = entry.replace('\r','') # remove HTML-standard CR inserted
- entry = entry.replace('\n\n','\n
\n
\n') # replace 2 \n with
- entry = entry.replace('
','
\n
tag with
- entry = entry.replace('
','
\n
tag with
+ # entry = entry.replace('
", "
", tripcontent).strip()
+ # tripcontent = re.sub(r"
", "
", tripcontent).strip()
+ tripcontent = triptext.strip()
triptitle = triptitle.strip()
# triptitle must be unique for a given date. [Why?!] We fix this here.