diff options
author | root <root@adnab.me> | 2014-01-31 16:42:40 +0100 |
---|---|---|
committer | root <root@adnab.me> | 2014-01-31 16:42:40 +0100 |
commit | b0c23ea84327d48e3a4383fac3e795c2dc0a1215 (patch) | |
tree | 625a8f0882815d9442a4ff2ec15a49e669a15ed3 /lib/list/rmbatch.php | |
parent | cee55b766230837c21453f85e76a921cb5b8b89e (diff) | |
download | Bits-b0c23ea84327d48e3a4383fac3e795c2dc0a1215.tar.gz Bits-b0c23ea84327d48e3a4383fac3e795c2dc0a1215.zip |
Remove all studying apps code.
Diffstat (limited to 'lib/list/rmbatch.php')
-rw-r--r-- | lib/list/rmbatch.php | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/list/rmbatch.php b/lib/list/rmbatch.php deleted file mode 100644 index 90ea370..0000000 --- a/lib/list/rmbatch.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -assert_redir(count($args) >= 3, 'list'); -$batchid = intval($args[2]); - -$batch = mysql_fetch_assoc(sql( - "SELECT lists.id AS listid, lists.owner AS listowner, lists.name AS listname, batches.name AS name, ". - "batches.model AS model, batches.contents AS contents ". - "FROM batches LEFT JOIN lists ON lists.id = batches.list ". - "WHERE batches.id = $batchid")); -assert_error($batch && $batch['listowner'] == $user['id'], - "this batch does not exist, or you are not allowed to edit it."); - -token_validate("Do you really want to delete this batch ?", "view-list-" . $batch['listid']); - -sql("DELETE FROM batches WHERE id = $batchid"); -sql("DELETE FROM batch_study WHERE batch = $batchid"); -sql("DELETE FROM batch_review WHERE batch = $batchid"); -header("Location: view-list-" . $batch['listid']); -die(); |