diff options
author | Florian Pritz <bluewind@xinu.at> | 2013-08-29 17:57:56 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2013-09-02 22:02:27 +0200 |
commit | 5638bcbd816540ba1f20b75ccc1220f98028bbc3 (patch) | |
tree | fd17944556c9aea7ea402bec0c542935fc8694b1 | |
parent | 39eacae51f4fbc239a11b150b752a76bccf74445 (diff) |
mfile/delete_id: Remove require_access call
We expect the controller to take care of that, no need to double check.
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r-- | application/models/mfile.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/application/models/mfile.php b/application/models/mfile.php index fe762d954..e862f1930 100644 --- a/application/models/mfile.php +++ b/application/models/mfile.php @@ -312,7 +312,6 @@ class Mfile extends CI_Model { function delete_id($id) { - $this->muser->require_access("apikey"); $filedata = $this->get_filedata($id); $userid = $this->muser->get_userid(); |