mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-12 11:28:49 +00:00
Default param
use that default parameter!!!
This commit is contained in:
parent
cdc69179fa
commit
e1bb463ba9
4 changed files with 37 additions and 48 deletions
|
@ -33,10 +33,11 @@ function notimeline_settings_post($a,$post) {
|
|||
info( 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 */
|
||||
|
||||
|
@ -44,10 +45,7 @@ function notimeline_settings(&$a,&$s) {
|
|||
|
||||
/* Get the current state of our config variable */
|
||||
|
||||
$notimeline = PConfig::get(local_user(),'system','no_wall_archive_widget');
|
||||
if(is_null($notimeline)) {
|
||||
$notimeline = false;
|
||||
}
|
||||
$notimeline = PConfig::get(local_user(), 'system', 'no_wall_archive_widget', false);
|
||||
|
||||
$notimeline_checked = (($notimeline) ? ' checked="checked" ' : '');
|
||||
|
||||
|
@ -64,5 +62,4 @@ function notimeline_settings(&$a,&$s) {
|
|||
/* provide a submit button */
|
||||
|
||||
$s .= '<div class="settings-submit-wrapper" ><input type="submit" name="notimeline-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div></div>';
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue