diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-07-02 23:08:49 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-07-02 23:08:49 +0200 |
commit | 61d70c1fa5f0ed9cfe4708a4630fbf959da2d781 (patch) | |
tree | 23706ec493544e96e292c076cdfc3ad9255ab809 /web | |
parent | 5f234469a5956fe99b2f732f39534b13ff686f09 (diff) | |
download | aurweb-61d70c1fa5f0ed9cfe4708a4630fbf959da2d781.tar.xz |
Do not ucfirst() merge base name in request list
Make sure the first character of the merge base name is not capitalized
in the package request list.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web')
-rw-r--r-- | web/template/pkgreq_results.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/template/pkgreq_results.php b/web/template/pkgreq_results.php index 7933964..9cd6faf 100644 --- a/web/template/pkgreq_results.php +++ b/web/template/pkgreq_results.php @@ -37,7 +37,7 @@ <td><?= htmlspecialchars($row["Name"]) ?></td> <?php endif; ?> <?php if ($row['Type'] == 'merge'): ?> - <td><?= htmlspecialchars(ucfirst($row['Type']), ENT_QUOTES); ?> (<?= htmlspecialchars(ucfirst($row['MergeInto']), ENT_QUOTES); ?>)</td> + <td><?= htmlspecialchars(ucfirst($row['Type']), ENT_QUOTES); ?> (<?= htmlspecialchars($row['MergeInto'], ENT_QUOTES); ?>)</td> <?php else: ?> <td><?= htmlspecialchars(ucfirst($row['Type']), ENT_QUOTES); ?></td> <?php endif; ?> |