Merge branch 'dev' into 'dev'

improve posting to mod pconfig via ajax

See merge request hubzilla/core!1340
This commit is contained in:
M. Dent 2018-10-16 21:08:19 +02:00
commit 34d189c02e

View File

@ -21,6 +21,7 @@ class Pconfig extends \Zotlabs\Web\Controller {
$cat = trim(escape_tags($_POST['cat']));
$k = trim(escape_tags($_POST['k']));
$v = trim($_POST['v']);
$aj = intval($_POST['aj']);
if(in_array(argv(2),$this->disallowed_pconfig())) {
notice( t('This setting requires special processing and editing has been blocked.') . EOL);
@ -34,6 +35,9 @@ class Pconfig extends \Zotlabs\Web\Controller {
set_pconfig(local_channel(),$cat,$k,$v);
build_sync_packet();
if($aj)
killme();
else
goaway(z_root() . '/pconfig/' . $cat . '/' . $k);
}