diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2017-03-02 21:44:29 +0100 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2017-03-02 21:44:29 +0100 |
commit | 7ee97933de51ace985a732f63906a6f8c8102d34 (patch) | |
tree | 896bfb091b11b201e5d959436070e4316224a2e7 /web/template | |
parent | c19284c78364e9c1663d69a963b9b0a89fdb2852 (diff) | |
download | aur-7ee97933de51ace985a732f63906a6f8c8102d34.tar.gz aur-7ee97933de51ace985a732f63906a6f8c8102d34.tar.xz |
account_delete.php: Fix variable name
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'web/template')
-rw-r--r-- | web/template/account_delete.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/template/account_delete.php b/web/template/account_delete.php index 74f386da..718b172f 100644 --- a/web/template/account_delete.php +++ b/web/template/account_delete.php @@ -7,7 +7,7 @@ <form id="edit-profile-form" action="<?= get_user_uri($username) . 'delete/'; ?>" method="post"> <fieldset> - <input type="hidden" name="Action" value="<?= $A ?>" /> + <input type="hidden" name="Action" value="<?= $action ?>" /> <input type="hidden" name="ID" value="<?= $UID ?>" /> <input type="hidden" name="token" value="<?= htmlspecialchars($_COOKIE['AURSID']) ?>" /> </fieldset> |