aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRasmus Fuhse <fuhse@data-quest.de>2022-04-01 12:31:26 +0200
committerElmar Ludwig <elmar.ludwig@uni-osnabrueck.de>2022-04-01 12:50:13 +0200
commit4f2fe4547809c2a0691da240815ea13d077244bc (patch)
treebdffdb86ba6c54479310a268156c622d70e4b2a6
parent526bdd171592b46cc56fe00b658a73710b99151d (diff)
re #793
-rwxr-xr-xapp/controllers/oer/endpoints.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/app/controllers/oer/endpoints.php b/app/controllers/oer/endpoints.php
index 1c94119..5986e7d 100755
--- a/app/controllers/oer/endpoints.php
+++ b/app/controllers/oer/endpoints.php
@@ -98,12 +98,8 @@ class Oer_EndpointsController extends StudipController
$host_data = json_decode($host_data, true);
if ($host_data) {
$host['name'] = $host_data['name'];
- $host['url'] = Request::get("from");
$host['public_key'] = $host_data['public_key'];
$host['last_updated'] = time();
- if ($host->isNew()) {
- $host['active'] = Config::get()->LERNMARKTPLATZ_ACTIVATE_NEW_HOSTS ? 1 : 0;
- }
$host->store();
}
}