Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/views/problem/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<i class="icon-ok"></i>
<?php endif; ?>
</td>
<td><a href="<?php echo SITE_BASE; ?>/problem/<?php echo $p->getId(); ?>"><?php echo fHTML::encode($p->getTitle()); ?></a></td>
<td><a href="<?php echo SITE_BASE; ?>/problem/<?php echo $p->getId(); ?>" target="problem_<?php echo $p->getId(); ?>"><?php echo fHTML::encode($p->getTitle()); ?></a></td>
<td><?php echo fHTML::encode($p->getAuthor()); ?></td>
<td><?php echo $p->getRatio(); ?>% (<?php echo $p->getAcceptCount(); ?>/<?php echo $p->getSubmitCount(); ?>)</td>
<td><a href="<?php echo SITE_BASE; ?>/submit?problem=<?php echo $p->getId(); ?>">提交</a></td>
Expand Down
2 changes: 1 addition & 1 deletion app/views/record/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<td><a href="<?php echo $this->top_url; ?><?php echo $r->getId(); ?>"><?php echo $r->getId(); ?></a></td>
<td><?php echo fHTML::encode($r->getOwner()); ?> <?php echo fHTML::encode(Profile::fetchRealName($r->getOwner())); ?></td>
<td>
<a href="<?php echo SITE_BASE; ?>/problem/<?php echo $r->getProblemId(); ?>"><?php echo $r->getProblemId(); ?></a>
<a href="<?php echo SITE_BASE; ?>/problem/<?php echo $r->getProblemId(); ?>" target="problem_<?php echo $r->getProblemId(); ?>"><?php echo $r->getProblemId(); ?></a>
<?php if (fAuthorization::checkLoggedIn()): ?>
<a href="<?php echo SITE_BASE; ?>/submit?problem=<?php echo $r->getProblemId(); ?>" rel="tooltip" data-placement="right" title="重新提交" class="icon-repeat"></a>
<?php endif; ?>
Expand Down