Procházet zdrojové kódy

[ #500564 ] "" in From header causes empty From

Thijs Kinkhorst před 23 roky
rodič
revize
52716a0ed3
1 změnil soubory, kde provedl 4 přidání a 0 odebrání
  1. 4 0
      functions/imap_general.php

+ 4 - 0
functions/imap_general.php

@@ -362,7 +362,11 @@ function sqimap_find_displayable_name ($string) {
     $string = trim($string);
     
     if ( ereg('^(.+)<.*>', $string, $regs) ) {
+        $orig_string = $string;
         $string = ereg_replace ('"', '', $regs[1] );
+        if (trim($string) == '') {
+             $string = sqimap_find_email($orig_string);
+        }
         if( $string == '' || $string == ' ' ){
             $string = '&nbsp';
         }