File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 84
84
$ actionresult .= sprintf (s ('Made subscriber %s confirmed ' ).'<br /> ' , $ userid );
85
85
} else {
86
86
$ actionresult .= sprintf (s ('Made subscriber %s unconfirmed ' ).'<br /> ' , $ userid );
87
- }
87
+ }
88
88
}
89
89
90
90
if (!empty ($ userid ) && $ maketext ) {
223
223
224
224
switch ($ transfer_encoding ) {
225
225
case 'quoted-printable ' :
226
- $ bounceBody = imap_qprint ($ bounce ['data ' ]);
226
+ $ bounceBody = quoted_printable_decode ($ bounce ['data ' ]);
227
227
break ;
228
228
case 'base64 ' :
229
- $ bounceBody = imap_base64 ($ bounce ['data ' ]);
229
+ $ bounceBody = base64_decode ($ bounce ['data ' ]);
230
230
break ;
231
231
case '7bit ' :
232
232
case '8bit ' :
Original file line number Diff line number Diff line change @@ -166,10 +166,10 @@ function decodeBody($header, $body)
166
166
}
167
167
switch ($ transfer_encoding ) {
168
168
case 'quoted-printable ' :
169
- $ decoded_body = @ imap_qprint ($ body );
169
+ $ decoded_body = quoted_printable_decode ($ body );
170
170
break ;
171
171
case 'base64 ' :
172
- $ decoded_body = @ imap_base64 ($ body );
172
+ $ decoded_body = base64_decode ($ body );
173
173
break ;
174
174
case '7bit ' :
175
175
case '8bit ' :
You can’t perform that action at this time.
0 commit comments