1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-27 08:14:46 +02:00

Issue #5465 Core language files converted. (excluding plugins)

This commit is contained in:
camer0n
2025-04-04 18:29:07 -07:00
parent c46b7b1d36
commit 31e7d1d3b0
93 changed files with 5255 additions and 6358 deletions

View File

@@ -761,7 +761,7 @@ class e107Email extends PHPMailer
/**
* Preview the BODY of an email
* @param $eml - array.
* @return string
* @return string|int
*/
public function preview($eml)
{
@@ -908,7 +908,7 @@ class e107Email extends PHPMailer
if(!empty($eml['template'])) // @see e107_core/templates/email_template.php
{
require_once(e_LANGUAGEDIR.e_LANGUAGE."/admin/lan_users.php"); // do not use e107::lan etc.
e107::includeLan(e_LANGUAGEDIR.e_LANGUAGE."/admin/lan_users.php"); // do not use e107::lan etc.
if(is_array($eml['template']))
{
@@ -1099,7 +1099,7 @@ class e107Email extends PHPMailer
* }
*
* @param boolean $bulkmail - set true if this email is one of a bulk send; false if an isolated email
* @return boolean|string - true if success, error message if failure
* @return boolean|string|int - true if success, error message if failure
*/
public function sendEmail($send_to, $to_name, $eml = array(), $bulkmail = false)
{