diff --git a/lang/mail.de-de.php b/lang/mail.de-de.php index 1e06948..3201f39 100644 --- a/lang/mail.de-de.php +++ b/lang/mail.de-de.php @@ -14,7 +14,7 @@ * limitations under the License. */ function send_mail($receiver, $subject, $body) { - include("config.php"); + include("../config.php"); $headers = "From: " . $config["register_email"] . "\r\n" . "Content-Type: text/plain;charset=utf-8"; return mail($receiver, $subject, $body, $headers); diff --git a/lang/mail.en-gb.php b/lang/mail.en-gb.php index af94c8d..f156b7c 100644 --- a/lang/mail.en-gb.php +++ b/lang/mail.en-gb.php @@ -14,7 +14,7 @@ * limitations under the License. */ function send_mail($receiver, $subject, $body) { - include("config.php"); + include("../config.php"); $headers = "From: " . $config["register_email"] . "\r\n" . "Content-Type: text/plain;charset=utf-8"; return mail($receiver, $subject, $body, $headers);