Skip to content

Commit

Permalink
Merge pull request #1 from sudwebdesign/sudwebdesign-patch-1
Browse files Browse the repository at this point in the history
Fix warning on translator: Missing argument 2 for AT_print()
  • Loading branch information
sudwebdesign committed Aug 7, 2016
2 parents c5be30d + a2cd892 commit 207d290
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion translation/index.php
Expand Up @@ -192,7 +192,7 @@ function trans_form() {
<input type="hidden" name="selected_term" value="<?php echo AT_print($_REQUEST['selected_term'], 'input.hidden'); ?>" />
<input type="hidden" name="lang_code" value="<?php echo AT_print($_REQUEST['lang_code'], 'input.hidden'); ?>" />
<input type="hidden" name="new_or_translated" value="<?php echo AT_print($_REQUEST['new_or_translated'], 'input.hidden'); ?>" />
<input type="hidden" name="term_type" value="<?php echo AT_print($_REQUEST['term_type']. 'input.hidden'); ?>" />
<input type="hidden" name="term_type" value="<?php echo AT_print($_REQUEST['term_type'], 'input.hidden'); ?>" />
<input type="hidden" name="search_phase" value="<?php echo htmlspecialchars(stripslashes($_REQUEST['search_phase'])); ?>" />
<input type="hidden" name="variable" value="<?php echo $row_english['variable']; ?>" />
<input type="hidden" name="term" value="<?php echo AT_print($row_english['term'], 'input.hidden'); ?>" />
Expand Down

0 comments on commit 207d290

Please sign in to comment.