From: Tobias Diekershoff Date: Sat, 11 Nov 2017 06:20:44 +0000 (+0100) Subject: use pconfig::delete in mailstream addon X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d20e60ef9180ea7c0c921a03de5466a04b286565;p=friendica-addons.git use pconfig::delete in mailstream addon --- diff --git a/mailstream/mailstream.php b/mailstream/mailstream.php index e7721e9a..13241480 100644 --- a/mailstream/mailstream.php +++ b/mailstream/mailstream.php @@ -381,25 +381,25 @@ function mailstream_plugin_settings_post($a,$post) { PConfig::set(local_user(), 'mailstream', 'address', $_POST['mailstream_address']); } else { - del_pconfig(local_user(), 'mailstream', 'address'); + PConfig::delete(local_user(), 'mailstream', 'address'); } if ($_POST['mailstream_nolikes']) { PConfig::set(local_user(), 'mailstream', 'nolikes', $_POST['mailstream_enabled']); } else { - del_pconfig(local_user(), 'mailstream', 'nolikes'); + PConfig::delete(local_user(), 'mailstream', 'nolikes'); } if ($_POST['mailstream_enabled']) { PConfig::set(local_user(), 'mailstream', 'enabled', $_POST['mailstream_enabled']); } else { - del_pconfig(local_user(), 'mailstream', 'enabled'); + PConfig::delete(local_user(), 'mailstream', 'enabled'); } if ($_POST['mailstream_attachimg']) { PConfig::set(local_user(), 'mailstream', 'attachimg', $_POST['mailstream_attachimg']); } else { - del_pconfig(local_user(), 'mailstream', 'attachimg'); + PConfig::delete(local_user(), 'mailstream', 'attachimg'); } }