Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Fix editing booleans in My Account
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Sep 7, 2016
1 parent 895891f commit b60e186
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/plugins/core.conf/AbstractConfDriver.php
Expand Up @@ -823,7 +823,7 @@ public function switchAction(ServerRequestInterface $requestInterface, ResponseI
$pluginId = $parameter["PLUGIN_ID"];
$name = $parameter["NAME"];
if (isSet($data[$name]) || $data[$name] === "") {
if($data[$name] == "__AJXP_VALUE_SET__") continue;
if($data[$name] === "__AJXP_VALUE_SET__") continue;
$pRole = null;
$persRole = $userObject->getPersonalRole();
if($userObject instanceof AbstractUser) $pRole = $userObject->parentRole;
Expand Down

0 comments on commit b60e186

Please sign in to comment.