diff options
author | friendica <info@friendica.com> | 2014-05-15 20:39:49 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-05-15 20:39:49 -0700 |
commit | 420540fc9444ec3273338ea7663e7903e9933414 (patch) | |
tree | f80c10430b68a6548ea323d825dea780f7721c38 | |
parent | a2b4187a083a16df788fa6feb196d64ec970d3c4 (diff) | |
download | volse-hubzilla-420540fc9444ec3273338ea7663e7903e9933414.tar.gz volse-hubzilla-420540fc9444ec3273338ea7663e7903e9933414.tar.bz2 volse-hubzilla-420540fc9444ec3273338ea7663e7903e9933414.zip |
login app
-rw-r--r-- | app/login.apd | 3 | ||||
-rw-r--r-- | include/apps.php | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/app/login.apd b/app/login.apd new file mode 100644 index 000000000..8d2c688b5 --- /dev/null +++ b/app/login.apd @@ -0,0 +1,3 @@ +url: $baseurl/login +requires: nologin +name: Login
\ No newline at end of file diff --git a/include/apps.php b/include/apps.php index 80fc0299b..733cb30cf 100644 --- a/include/apps.php +++ b/include/apps.php @@ -70,6 +70,10 @@ function parse_app_description($f) { if(array_key_exists('requires',$ret)) { $require = trim(strtolower($ret['requires'])); switch($require) { + case 'nologin': + if(local_user()) + unset($ret); + break; case 'local_user': if(! local_user()) unset($ret); |