diff --git a/application/language/de/common_lang.php b/application/language/de/common_lang.php index 0482fb5b5..295eef665 100644 --- a/application/language/de/common_lang.php +++ b/application/language/de/common_lang.php @@ -3,7 +3,7 @@ $lang["common_address_1"] = "Adresse 1"; $lang["common_address_2"] = "Adresse 2"; $lang["common_city"] = "Stadt"; -$lang["common_close"] = "Close"; +$lang["common_close"] = "Schließen"; $lang["common_comments"] = "Kommentare"; $lang["common_common"] = "Allgemein"; $lang["common_confirm_search"] = "Sie haben einen oder mehrere Zeilen gewählt. Nach der Verarbeitung werden diese nicht mehr selektiert sein. Wollen Sie die Suche dennoch verarbeiten?"; diff --git a/application/language/sv/bootstrap_tables_lang.php b/application/language/sv/bootstrap_tables_lang.php new file mode 100644 index 000000000..b3d9bbc7f --- /dev/null +++ b/application/language/sv/bootstrap_tables_lang.php @@ -0,0 +1 @@ +CI->email->from($this->CI->config->item('email'), $this->CI->config->item('company')); - $this->CI->email->to($to); - $this->CI->email->subject($subject); - $this->CI->email->message($message); + $email = $this->CI->email; + + $email->from($this->CI->config->item('email'), $this->CI->config->item('company')); + $email->to($to); + $email->subject($subject); + $email->message($message); if( !empty($attachment) ) { - $this->CI->email->attach($attachment); + $email->attach($attachment); } - return $this->CI->email->send(); + $result = $email->send(); + + if(!$result) + { + error_log($email->print_debugger()); + } + + return $result; } }