]> git.mxchange.org Git - friendica-addons.git/blobdiff - notimeline/notimeline.php
[langfilter] Remove Composer dependency
[friendica-addons.git] / notimeline / notimeline.php
index a0765b962598ba3ceea71e9309904b8f58ab36dd..b99501c3a3b3876f7fb9f11ab86e57828ccb9fd0 100644 (file)
@@ -16,12 +16,6 @@ function notimeline_install()
        Hook::register('addon_settings_post', 'addon/notimeline/notimeline.php', 'notimeline_settings_post');
 }
 
-function notimeline_uninstall()
-{
-       Hook::unregister('addon_settings', 'addon/notimeline/notimeline.php', 'notimeline_settings');
-       Hook::unregister('addon_settings_post', 'addon/notimeline/notimeline.php', 'notimeline_settings_post');
-}
-
 function notimeline_settings_post($a, $post)
 {
        if (!local_user() || empty($_POST['notimeline-submit'])) {
@@ -29,7 +23,6 @@ function notimeline_settings_post($a, $post)
        }
 
        DI::pConfig()->set(local_user(), 'system', 'no_wall_archive_widget', intval($_POST['notimeline']));
-       info(DI::l10n()->t('No Timeline settings updated.') . EOL);
 }
 
 function notimeline_settings(&$a, &$s)