mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Display versioned conflicts/provides/replaces
Show the specific conflicts/provides/replaces versions in the web interface. Implements FS#40699. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
parent
26a0919937
commit
9b5271d737
1 changed files with 6 additions and 6 deletions
|
@ -213,9 +213,9 @@ if ($SID && ($uid == $row["MaintainerUID"] ||
|
||||||
<?php foreach($rels_c as $rarr): ?>
|
<?php foreach($rels_c as $rarr): ?>
|
||||||
<span class="related">
|
<span class="related">
|
||||||
<?php if ($rarr !== end($rels_c)): ?>
|
<?php if ($rarr !== end($rels_c)): ?>
|
||||||
<?= htmlspecialchars($rarr[0]) ?>,
|
<?= htmlspecialchars($rarr[0] . $rarr[2]) ?>,
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<?= htmlspecialchars($rarr[0]) ?>
|
<?= htmlspecialchars($rarr[0] . $rarr[2]) ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</span>
|
</span>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
|
@ -229,9 +229,9 @@ if ($SID && ($uid == $row["MaintainerUID"] ||
|
||||||
<?php foreach($rels_p as $rarr): ?>
|
<?php foreach($rels_p as $rarr): ?>
|
||||||
<span class="related">
|
<span class="related">
|
||||||
<?php if ($rarr !== end($rels_p)): ?>
|
<?php if ($rarr !== end($rels_p)): ?>
|
||||||
<?= htmlspecialchars($rarr[0]) ?>,
|
<?= htmlspecialchars($rarr[0] . $rarr[2]) ?>,
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<?= htmlspecialchars($rarr[0]) ?>
|
<?= htmlspecialchars($rarr[0] . $rarr[2]) ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</span>
|
</span>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
|
@ -245,9 +245,9 @@ if ($SID && ($uid == $row["MaintainerUID"] ||
|
||||||
<?php foreach($rels_r as $rarr): ?>
|
<?php foreach($rels_r as $rarr): ?>
|
||||||
<span class="related">
|
<span class="related">
|
||||||
<?php if ($rarr !== end($rels_r)): ?>
|
<?php if ($rarr !== end($rels_r)): ?>
|
||||||
<?= htmlspecialchars($rarr[0]) ?>,
|
<?= htmlspecialchars($rarr[0] . $rarr[2]) ?>,
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<?= htmlspecialchars($rarr[0]) ?>
|
<?= htmlspecialchars($rarr[0] . $rarr[2]) ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</span>
|
</span>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
|
|
Loading…
Add table
Reference in a new issue