Skip to content

Commit

Permalink
Update status.php
Browse files Browse the repository at this point in the history
  • Loading branch information
zhblue authored Jul 9, 2016
1 parent 01826d7 commit 83370d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions trunk/web/template/sae/status.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
<?php
?>
<form id=simform action="status.php" method="get">
<?php echo $MSG_PROBLEM_ID?>:<input class="input-mini" style="height:24px" type=text size=4 name=problem_id value='<?php echo $problem_id?>'>
<?php echo $MSG_USER?>:<input class="input-mini" style="height:24px" type=text size=4 name=user_id value='<?php echo $user_id?>'>
<?php echo $MSG_PROBLEM_ID?>:<input class="input-mini" style="height:24px" type=text size=4 name=problem_id value='<?php echo htmlentities($problem_id,ENT_QUOTES,'UTF-8')?>'>
<?php echo $MSG_USER?>:<input class="input-mini" style="height:24px" type=text size=4 name=user_id value='<?php echo htmlentities($user_id,ENT_QUOTES,'UTF-8')?>'>
<?php if (isset($cid)) echo "<input type='hidden' name='cid' value='$cid'>";?>
<?php echo $MSG_LANG?>:<select class="input-small" size="1" name="language">
<?php if (isset($_GET['language'])) $language=$_GET['language'];
<?php if (isset($_GET['language'])) $language=intval($_GET['language']);
else $language=-1;
if ($language<0||$language>=count($language_name)) $language=-1;
if ($language==-1) echo "<option value='-1' selected>All</option>";
Expand Down

0 comments on commit 83370d7

Please sign in to comment.