diff --git a/i2p2www/pages/site/contact.html b/i2p2www/pages/site/contact.html
index 47013598..3015360e 100644
--- a/i2p2www/pages/site/contact.html
+++ b/i2p2www/pages/site/contact.html
@@ -18,10 +18,9 @@
{% filter escape %}
{{ _('Channel list:') }}
-#i2p {{ _('General i2p discussion') }}
+#i2p {{ _('General i2p discussion and help channel') }}
#i2p-chat {{ _('Offtopic') }}
#i2p-dev {{ _('Development talk') }}
-#i2p-help {{ _('Help channel') }}
{% endfilter %}
diff --git a/site-updater.sh b/site-updater.sh
index d062aeee..b47aec58 100755
--- a/site-updater.sh
+++ b/site-updater.sh
@@ -3,6 +3,8 @@ cd $(dirname $0)
. ./etc/update.vars
[ -f ./etc/update.vars.custom ] && . ./etc/update.vars.custom
+[ ! -f $TOUCHFILE ] && touch $TOUCHFILE
+
TMP=$(mktemp XXXXXXXXXX)
trap 'rm -f $TMP;exit' 0 1 2 15