summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2014-07-02 23:08:49 +0200
committerLukas Fleischer <archlinux@cryptocrack.de>2014-07-02 23:08:49 +0200
commit61d70c1fa5f0ed9cfe4708a4630fbf959da2d781 (patch)
tree23706ec493544e96e292c076cdfc3ad9255ab809
parent5f234469a5956fe99b2f732f39534b13ff686f09 (diff)
downloadaur-61d70c1fa5f0ed9cfe4708a4630fbf959da2d781.tar.gz
aur-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>
-rw-r--r--web/template/pkgreq_results.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/template/pkgreq_results.php b/web/template/pkgreq_results.php
index 7933964c..9cd6faf0 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; ?>