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

View File

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