mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
pkg_details.php: Remove plural from the adopt/disown button
Fixes FS#32455. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
parent
274182a424
commit
73656e17bd
1 changed files with 2 additions and 2 deletions
|
@ -69,10 +69,10 @@ $sources = package_sources($row["ID"]);
|
|||
</div>
|
||||
<p>
|
||||
<?php if ($row["MaintainerUID"] === NULL): ?>
|
||||
<input type="submit" class="button" name="do_Adopt" value="<?= __("Adopt Packages") ?>" />
|
||||
<input type="submit" class="button" name="do_Adopt" value="<?= __("Adopt Package") ?>" />
|
||||
<?php elseif ($uid == $row["MaintainerUID"] ||
|
||||
$atype == "Trusted User" || $atype == "Developer"): ?>
|
||||
<input type="submit" class="button" name="do_Disown" value="<?= __("Disown Packages") ?>" />
|
||||
<input type="submit" class="button" name="do_Disown" value="<?= __("Disown Package") ?>" />
|
||||
<?php endif; ?>
|
||||
</p>
|
||||
</form>
|
||||
|
|
Loading…
Add table
Reference in a new issue