Merge branch 'master' of https://github.com/PHPMailer/PHPMailer
This commit is contained in:
commit
d7e2b19de2
|
|
@ -46,7 +46,7 @@ function tln_tagprint($tagname, $attary, $tagtype)
|
|||
$fulltag = '<' . $tagname;
|
||||
if (is_array($attary) && sizeof($attary)) {
|
||||
$atts = array();
|
||||
while (list($attname, $attvalue) = each($attary)) {
|
||||
foreach($attary as $attname => $attvalue) {
|
||||
array_push($atts, "$attname=$attvalue");
|
||||
}
|
||||
$fulltag .= ' ' . join(' ', $atts);
|
||||
|
|
@ -520,7 +520,7 @@ function tln_fixatts(
|
|||
$trans_image_path,
|
||||
$block_external_images
|
||||
) {
|
||||
while (list($attname, $attvalue) = each($attary)) {
|
||||
foreach($attary as $attname => $attvalue) {
|
||||
/**
|
||||
* See if this attribute should be removed.
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue