mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Just retested the mailing functionality, which seems to still work proper
This commit is contained in:
parent
9b74660631
commit
8ab4b6ba84
2 changed files with 3 additions and 3 deletions
|
@ -91,11 +91,11 @@ class Helpers{
|
||||||
{
|
{
|
||||||
// if HTTP_USER_AGENT is not set then its ryzom core
|
// if HTTP_USER_AGENT is not set then its ryzom core
|
||||||
global $FORCE_INGAME;
|
global $FORCE_INGAME;
|
||||||
if (( strpos($_SERVER['HTTP_USER_AGENT'],"Ryzom") === 0) || $FORCE_INGAME){
|
if ( ( isset($_SERVER['HTTP_USER_AGENT']) && (strpos($_SERVER['HTTP_USER_AGENT'],"Ryzom") === 0)) || $FORCE_INGAME){
|
||||||
return true;
|
return true;
|
||||||
}else{
|
}else{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static public function handle_language(){
|
static public function handle_language(){
|
||||||
|
|
|
@ -161,7 +161,7 @@ email_subject_new_ticket = "New ticket created [Ticket #"
|
||||||
email_body_new_ticket_1 = "---------- Ticket #"
|
email_body_new_ticket_1 = "---------- Ticket #"
|
||||||
email_body_new_ticket_2 = " ----------
|
email_body_new_ticket_2 = " ----------
|
||||||
Your ticket: "
|
Your ticket: "
|
||||||
email_body_new_ticket_3 = " is newly created
|
email_body_new_ticket_3 = " ,is newly created
|
||||||
----------
|
----------
|
||||||
"
|
"
|
||||||
email_body_new_ticket_4 = "
|
email_body_new_ticket_4 = "
|
||||||
|
|
Loading…
Reference in a new issue