View | Details | Raw Unified | Return to bug 4472
Collapse All | Expand All

(-)a/misc/translator/tmpl_process3.pl (-5 / +10 lines)
Lines 74-83 sub text_replace_tag ($$) { Link Here
74
            sprintf(' %s=%s', $_, $attr->{$_}->[2]) #FIXME
74
            sprintf(' %s=%s', $_, $attr->{$_}->[2]) #FIXME
75
        } sort {
75
        } sort {
76
            $attr->{$a}->[3] <=> $attr->{$b}->[3] #FIXME
76
            $attr->{$a}->[3] <=> $attr->{$b}->[3] #FIXME
77
        } keys %$attr)
77
        } keys %$attr);
78
        . '>';
78
	if ($tag eq 'img'){
79
    } else {
79
	    $it .= ' />';
80
    $it = $t;
80
	}
81
	else {	    
82
           $it .= ' >';
83
	}
84
    } 
85
    else {
86
        $it = $t;
81
    }
87
    }
82
    return $it;
88
    return $it;
83
}
89
}
84
- 

Return to bug 4472