diff options
| author | Cassio de Campos <cassiopc@gmail.com> | 2016-11-12 13:23:18 +0000 |
|---|---|---|
| committer | Cassio de Campos <cassiopc@gmail.com> | 2016-11-12 13:23:18 +0000 |
| commit | f9de9e8d6f2739c10e7853186f13d1991c390f17 (patch) | |
| tree | 01ab6907af3df363e69085c51fb10cb825551248 /src/team/problem.php | |
| parent | f9d317ce84f3e14926e3422d1277ec6cdb10f57f (diff) | |
| download | boca-f9de9e8d6f2739c10e7853186f13d1991c390f17.tar.gz boca-f9de9e8d6f2739c10e7853186f13d1991c390f17.zip | |
fix closing href
Diffstat (limited to 'src/team/problem.php')
| -rw-r--r-- | src/team/problem.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/team/problem.php b/src/team/problem.php index 2627990..a411760 100644 --- a/src/team/problem.php +++ b/src/team/problem.php @@ -44,7 +44,7 @@ for ($i=0; $i<count($prob); $i++) { echo " <td nowrap>" . $prob[$i]["fullname"] . " </td>\n"; if (isset($prob[$i]["descoid"]) && $prob[$i]["descoid"] != null && isset($prob[$i]["descfilename"])) { echo " <td nowrap><a href=\"../filedownload.php?" . filedownload($prob[$i]["descoid"], $prob[$i]["descfilename"]) . - "\">" . basename($prob[$i]["descfilename"]) . "</td>\n"; + "\">" . basename($prob[$i]["descfilename"]) . "</a></td>\n"; } else echo " <td nowrap>no description file available</td>\n"; |