| | |
| | | | | |
| | | | This file is part of the RoundCube Webmail client | |
| | | | Copyright (C) 2005, RoundCube Dev. - Switzerland | |
| | | | All rights reserved. | |
| | | | Licensed under the GNU GPL | |
| | | | | |
| | | | PURPOSE: | |
| | | | Delete the submitted identities (IIDs) from the database | |
| | |
| | | |
| | | if ($_GET['_iid']) |
| | | { |
| | | $DB->query(sprintf("UPDATE %s |
| | | SET del='1' |
| | | WHERE user_id=%d |
| | | AND identity_id IN (%s)", |
| | | get_table_name('identities'), |
| | | $_SESSION['user_id'], |
| | | $_GET['_iid'])); |
| | | $DB->query("UPDATE ".get_table_name('identities')." |
| | | SET del='1' |
| | | WHERE user_id=? |
| | | AND identity_id IN (".$_GET['_iid'].")", |
| | | $_SESSION['user_id']); |
| | | |
| | | $count = $DB->affected_rows(); |
| | | if ($count) |