Allow regular users to upload, too.

This commit is contained in:
Aaron van Geffen 2016-09-04 16:26:50 +02:00
parent 6d07a47132
commit 7c19265767
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@ class UploadMedia extends HTMLController
{
public function __construct()
{
// Ensure it's just admins at this point.
if (!Registry::get('user')->isAdmin())
// Ensure we're logged in at this point.
if (!Registry::get('user')->isLoggedIn())
throw new NotAllowedException();
if (!isset($_REQUEST['tag']))