]> git.mxchange.org Git - friendica-addons.git/blobdiff - planets/planets.php
Changes:
[friendica-addons.git] / planets / planets.php
index 8a206fb51641c2bd46df0f514b39a403b4fe9aaa..2937c0360ed3c32596638b66665e0126df576060 100644 (file)
@@ -81,38 +81,28 @@ function planets_post_hook(&$item)
        return;
 }
 
-
-
-
 /**
- *
  * Callback from the settings post function.
  * $post contains the $_POST array.
  * We will make sure we've got a valid user account
  * and if so set our configuration setting for this person.
- *
  */
-
-function planets_settings_post($post)
+function planets_settings_post(array $post)
 {
        if (!DI::userSession()->getLocalUserId()) {
                return;
        }
-       if ($_POST['planets-submit']) {
-               DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'planets', 'enable' ,intval($_POST['planets']));
+       if ($post['planets-submit']) {
+               DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'planets', 'enable' ,intval($post['planets']));
        }
 }
 
 
 /**
- *
  * Called from the Addon Setting form.
  * Add our own settings info to the page.
  *
  */
-
-
-
 function planets_settings(array &$data)
 {
        if(!DI::userSession()->getLocalUserId()) {