mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-19 23:43:00 +02:00
Fix inpossible download of hostcert on french language.
The french tranlsation string for download host certificate contains a single quote character which breaks the used HTML code. As a result of this it wasn't possibe to download the host certificate via the WUI with selected french language. Fixes #10405.
This commit is contained in:
@@ -4748,8 +4748,8 @@ END
|
||||
<input type='image' name='$Lang::tr{'show host certificate'}' src='/images/info.gif' alt='$Lang::tr{'show host certificate'}' title='$Lang::tr{'show host certificate'}' width='20' height='20' border='0' />
|
||||
</td></form>
|
||||
<form method='post' name='frmhostcrtb'><td width='3%' align='center'>
|
||||
<input type='image' name='$Lang::tr{'download host certificate'}' src='/images/media-floppy.png' alt='$Lang::tr{'download host certificate'}' title='$Lang::tr{'download host certificate'}' border='0' />
|
||||
<input type='hidden' name='ACTION' value='$Lang::tr{'download host certificate'}' />
|
||||
<input type='image' name="$Lang::tr{'download host certificate'}" src='/images/media-floppy.png' alt="$Lang::tr{'download host certificate'}" title="$Lang::tr{'download host certificate'}" border='0' />
|
||||
<input type='hidden' name='ACTION' value="$Lang::tr{'download host certificate'}" />
|
||||
</td></form>
|
||||
<td width='4%'> </td></tr>
|
||||
END
|
||||
|
||||
@@ -2870,8 +2870,8 @@ END
|
||||
</td>
|
||||
<td width='3%' align='center'>
|
||||
<form method='post' action='$ENV{'SCRIPT_NAME'}'>
|
||||
<input type='image' name='$Lang::tr{'download host certificate'}' src='/images/floppy.gif' alt='$Lang::tr{'download host certificate'}' title='$Lang::tr{'download host certificate'}' />
|
||||
<input type='hidden' name='ACTION' value='$Lang::tr{'download host certificate'}' />
|
||||
<input type='image' name="$Lang::tr{'download host certificate'}" src='/images/floppy.gif' alt="$Lang::tr{'download host certificate'}" title="$Lang::tr{'download host certificate'}" />
|
||||
<input type='hidden' name='ACTION' value="$Lang::tr{'download host certificate'}" />
|
||||
</form>
|
||||
</td>
|
||||
<td width='4%'> </td></tr>
|
||||
|
||||
Reference in New Issue
Block a user