This commit is contained in:
Ceda EI 2018-04-05 12:09:08 +05:30
parent d8b9afc8fc
commit b255e40de5
1 changed files with 3 additions and 2 deletions

View File

@ -74,12 +74,13 @@ function new_member() {
$text .= "You can run /update to regenerate the chain.\n"; $text .= "You can run /update to regenerate the chain.\n";
$text .= "\n"; $text .= "\n";
$text .= "Have Fun"; $text .= "Have Fun";
send_text($text); send_html($text);
} }
} }
function update() { 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'); include('./update_chain.php');
} }