From b255e40de58574305c9c63235960e7ae0d681c51 Mon Sep 17 00:00:00 2001 From: Ceda EI Date: Thu, 5 Apr 2018 12:09:08 +0530 Subject: [PATCH] Bug Fix --- webhook.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/webhook.php b/webhook.php index e3a2321..737ec83 100644 --- a/webhook.php +++ b/webhook.php @@ -74,12 +74,13 @@ function new_member() { $text .= "You can run /update to regenerate the chain.\n"; $text .= "\n"; $text .= "Have Fun"; - send_text($text); + send_html($text); } } + function update() { - send_text("Update started. New chain will only be send if the chain has changed. Please wait as this takes about a minute."); + send_html("Update started. New chain will only be send if the chain has changed. Please wait as this takes about a minute."); include('./update_chain.php'); }