Skip to content
Snippets Groups Projects
Commit c71e477b authored by Jared Hancock's avatar Jared Hancock
Browse files

i18n: Fix missing echos

Fixes #1926
parent 55e01a2a
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,7 @@ if ($acct = $thisclient->getAccount()) { ...@@ -44,7 +44,7 @@ if ($acct = $thisclient->getAccount()) {
<td> <td>
<input type="checkbox" name="dst" value="1" <?php echo $info['dst']?'checked="checked"':''; ?>> <input type="checkbox" name="dst" value="1" <?php echo $info['dst']?'checked="checked"':''; ?>>
<?php echo __('Observe daylight saving'); ?> <?php echo __('Observe daylight saving'); ?>
<em>(<?php __('Current Time'); ?>: <em>(<?php echo __('Current Time'); ?>:
<strong><?php echo Format::date($cfg->getDateTimeFormat(),Misc::gmtime(),$info['tz_offset'],$info['dst']); ?></strong>)</em> <strong><?php echo Format::date($cfg->getDateTimeFormat(),Misc::gmtime(),$info['tz_offset'],$info['dst']); ?></strong>)</em>
</td> </td>
</tr> </tr>
......
...@@ -249,7 +249,7 @@ $info['id']=$staff->getId(); ...@@ -249,7 +249,7 @@ $info['id']=$staff->getId();
<td colspan=2> <td colspan=2>
<textarea class="richtext no-bar" name="signature" cols="21" <textarea class="richtext no-bar" name="signature" cols="21"
rows="5" style="width: 60%;"><?php echo $info['signature']; ?></textarea> rows="5" style="width: 60%;"><?php echo $info['signature']; ?></textarea>
<br><em><?php __('Signature is made available as a choice, on ticket reply.');?></em> <br><em><?php echo __('Signature is made available as a choice, on ticket reply.');?></em>
</td> </td>
</tr> </tr>
</tbody> </tbody>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment