diff options
author | Bart Visscher <bartv@thisnet.nl> | 2011-09-30 23:05:10 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2011-09-30 23:17:18 +0200 |
commit | f4782a76907cf010faf9f4cd7deb3a67a2d02de9 (patch) | |
tree | ff3236d0f2785bc6946e84a80e69cf65a1fd6559 /apps/user_openid | |
parent | ddd359989909add47912ad358bec55a924907d81 (diff) | |
download | nextcloud-server-f4782a76907cf010faf9f4cd7deb3a67a2d02de9.tar.gz nextcloud-server-f4782a76907cf010faf9f4cd7deb3a67a2d02de9.zip |
Check if the application is actually enabled
Diffstat (limited to 'apps/user_openid')
-rw-r--r-- | apps/user_openid/user.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/user_openid/user.php b/apps/user_openid/user.php index d90e0b71900..3cbc38491ca 100644 --- a/apps/user_openid/user.php +++ b/apps/user_openid/user.php @@ -37,6 +37,7 @@ if($USERNAME=='' and isset($_SERVER['PHP_AUTH_USER'])){ $RUNTIME_NOAPPS=true; $RUNTIME_NOAPPS=false; require_once '../../lib/base.php'; +OC_Util::checkAppEnabled('user_openid'); if(!OC_User::userExists($USERNAME)){ if(defined("DEBUG") && DEBUG) {error_log($USERNAME.' doesn\'t exist');} |