소스 검색

A little improvement to confirmationEmail() on classes/user.class.php

pecesama 17 년 전
부모
커밋
d4813db262
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 2
      classes/user.class.php

+ 3 - 2
classes/user.class.php 파일 보기

138
 
138
 
139
 	function confirmationEmail($email="", $user="", $password="") {
139
 	function confirmationEmail($email="", $user="", $password="") {
140
 		$msg =  "<font face=verdana><em><font size=2>Account information on <strong>gelato CMS</strong></font></em><br/><br/>";
140
 		$msg =  "<font face=verdana><em><font size=2>Account information on <strong>gelato CMS</strong></font></em><br/><br/>";
141
+		$msg .=	"Visit the <a href=\"".$this->conf->urlGelato."/admin/\">tumblelog panel</a> <br/><br/>";
141
 		$msg .=	"<font size=1>Username: <strong>".$user."</strong><br/><br/>";
142
 		$msg .=	"<font size=1>Username: <strong>".$user."</strong><br/><br/>";
142
-		$msg .=	"Password: <strong>".$password."</strong><br/><br/>";
143
+		$msg .=	"Password: <strong>".$password."</strong><br/><br/>";		
143
 		$msg .=	"<em>Don't tell your password to anybody!!</em><br/><br/></font>";
144
 		$msg .=	"<em>Don't tell your password to anybody!!</em><br/><br/></font>";
144
 
145
 
145
-		sendMail($email, "Register conformation on gelato CMS", $msg, "no-reply@gelatocms.com");
146
+		sendMail($email, "Register confirmation on gelato CMS", $msg, "no-reply@gelatocms.com");
146
 	}
147
 	}
147
 }
148
 }
148
 ?>
149
 ?>