Blame view
sources/apps/xmpp/ajax/setRid.php
160 Bytes
|
42e4f8d60
|
1 2 3 4 |
<?php
$stmt = OCP\DB::prepare('UPDATE `*PREFIX*xmpp` SET `rid` = ? WHERE `ocUser` = ?');
$result = $stmt->execute(array($_POST['rid'],OCP\User::getUser()));
?>
|