diff options
author | Bart Visscher <bartv@thisnet.nl> | 2011-09-30 23:10:08 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2011-09-30 23:17:30 +0200 |
commit | 9a5d517ec2d90698c98cf57cd5a12b4d1a40f53f (patch) | |
tree | 6769a9c99d3ed09daa5453830a3a7cefa824433e /apps/contacts | |
parent | f4782a76907cf010faf9f4cd7deb3a67a2d02de9 (diff) | |
download | nextcloud-server-9a5d517ec2d90698c98cf57cd5a12b4d1a40f53f.tar.gz nextcloud-server-9a5d517ec2d90698c98cf57cd5a12b4d1a40f53f.zip |
Add more checks for admin user
Diffstat (limited to 'apps/contacts')
-rw-r--r-- | apps/contacts/photo.php | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/apps/contacts/photo.php b/apps/contacts/photo.php index 1bdfbe3a27f..5178fe7a078 100644 --- a/apps/contacts/photo.php +++ b/apps/contacts/photo.php @@ -22,19 +22,13 @@ // Init owncloud require_once('../../lib/base.php'); +OC_Util::checkLoggedIn(); OC_Util::checkAppEnabled('contacts'); $id = $_GET['id']; $l10n = new OC_L10N('contacts'); -// Check if we are a user -if( !OC_User::isLoggedIn()){ - echo $l10n->t('You need to log in.'); - exit(); -} - - $card = OC_Contacts_VCard::find( $id ); if( $card === false ){ echo $l10n->t('Contact could not be found.'); |