1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/limesurvey_ynh.git synced 2024-09-03 19:36:32 +02:00
limesurvey_ynh/sources/application/views/admin/translate/translatefields_view.php

13 lines
242 B
PHP

<?php
if (strlen(trim((string)$textfrom)) > 0)
{
// Display translation fields
echo $translateFields;
}
else
{
?>
<input type='hidden' name='<?php echo $type; ?>_newvalue[<?php echo $i; ?>]' value='<?php echo $textto; ?>' />
<?php
}
?>