mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-22 06:23:42 +00:00
use pconfig::delete in mailstream addon
This commit is contained in:
parent
42eefed6e6
commit
d20e60ef91
1 changed files with 4 additions and 4 deletions
|
@ -381,25 +381,25 @@ function mailstream_plugin_settings_post($a,$post) {
|
||||||
PConfig::set(local_user(), 'mailstream', 'address', $_POST['mailstream_address']);
|
PConfig::set(local_user(), 'mailstream', 'address', $_POST['mailstream_address']);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
del_pconfig(local_user(), 'mailstream', 'address');
|
PConfig::delete(local_user(), 'mailstream', 'address');
|
||||||
}
|
}
|
||||||
if ($_POST['mailstream_nolikes']) {
|
if ($_POST['mailstream_nolikes']) {
|
||||||
PConfig::set(local_user(), 'mailstream', 'nolikes', $_POST['mailstream_enabled']);
|
PConfig::set(local_user(), 'mailstream', 'nolikes', $_POST['mailstream_enabled']);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
del_pconfig(local_user(), 'mailstream', 'nolikes');
|
PConfig::delete(local_user(), 'mailstream', 'nolikes');
|
||||||
}
|
}
|
||||||
if ($_POST['mailstream_enabled']) {
|
if ($_POST['mailstream_enabled']) {
|
||||||
PConfig::set(local_user(), 'mailstream', 'enabled', $_POST['mailstream_enabled']);
|
PConfig::set(local_user(), 'mailstream', 'enabled', $_POST['mailstream_enabled']);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
del_pconfig(local_user(), 'mailstream', 'enabled');
|
PConfig::delete(local_user(), 'mailstream', 'enabled');
|
||||||
}
|
}
|
||||||
if ($_POST['mailstream_attachimg']) {
|
if ($_POST['mailstream_attachimg']) {
|
||||||
PConfig::set(local_user(), 'mailstream', 'attachimg', $_POST['mailstream_attachimg']);
|
PConfig::set(local_user(), 'mailstream', 'attachimg', $_POST['mailstream_attachimg']);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
del_pconfig(local_user(), 'mailstream', 'attachimg');
|
PConfig::delete(local_user(), 'mailstream', 'attachimg');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue