Skip to content

Commit

Permalink
Fixed issue: Another soon to be fixed tidy error
Browse files Browse the repository at this point in the history
  • Loading branch information
lacrioque committed Jul 21, 2017
1 parent 0c2df53 commit 14ab505
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion application/views/admin/translate/translatefields_view.php
@@ -1,5 +1,9 @@
<?php if (strlen(trim((string)$textfrom)) > 0) : ?>
<?=tidy_repair_string($translateFields)?>
<?php if (extension_loaded('tidy')) : ?>
<?=tidy_repair_string($translateFields)?>
<?php else:?>
<?=$translateFields;?>
<?php endif;?>
<?php else: ?>
<input type='hidden' name='<?php echo $type; ?>_newvalue[<?php echo $i; ?>]' value='<?php echo $textto; ?>' />
<?php endif;?>
Expand Down

0 comments on commit 14ab505

Please sign in to comment.