Skip to content

Commit

Permalink
Prbably don't need to translate varable names
Browse files Browse the repository at this point in the history
  • Loading branch information
bbannon committed Oct 11, 2024
1 parent 4169643 commit 8f0119d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions usersel.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
$listid = getGetValue ( 'listid' );
$progErrStr = translate ( 'Program Error No XXX specified!' );
if ( empty ( $form ) ) {
echo str_replace ( 'XXX', translate ( 'form' ), $progErrStr );
echo str_replace ( 'XXX', 'form', $progErrStr );
exit;
}
if ( empty ( $listid ) ) {
echo str_replace ( 'XXX', translate ( 'listid' ), $progErrStr );
echo str_replace ( 'XXX', 'listid', $progErrStr );
exit;
}

Expand Down

0 comments on commit 8f0119d

Please sign in to comment.