]> git.mxchange.org Git - friendica-addons.git/blobdiff - notimeline/notimeline.php
Merge branch '3.6-release'
[friendica-addons.git] / notimeline / notimeline.php
index fb32717965c2ed79453014694c9b9c0d756c3087..93782878a246e6dea1a993d2449183c70b34ab66 100644 (file)
@@ -32,10 +32,11 @@ function notimeline_settings_post($a, $post)
        info(L10n::t('No Timeline settings updated.') . EOL);
 }
 
-function notimeline_settings(&$a,&$s) {
-
-       if(! local_user())
+function notimeline_settings(&$a, &$s)
+{
+       if (! local_user()) {
                return;
+       }
 
        /* Add our stylesheet to the page so we can make our settings look nice */
 
@@ -43,9 +44,7 @@ function notimeline_settings(&$a,&$s) {
 
        /* Get the current state of our config variable */
 
-       $notimeline = get_pconfig(local_user(),'system','no_wall_archive_widget');
-       if($notimeline === false)
-               $notimeline = false;
+       $notimeline = PConfig::get(local_user(), 'system', 'no_wall_archive_widget', false);
 
        $notimeline_checked = (($notimeline) ? ' checked="checked" ' : '');