Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

partial fix #4517 - fix for settings of plugin.xml #5029

Merged
merged 1 commit into from Jul 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions e107_handlers/plugin_class.php
Expand Up @@ -2130,7 +2130,7 @@ private function manage_extended_field($action, $field_name, $field_attrib, $fie

// classes
$field_attrib['read'] = varset($field_attrib['read'], 'e_UC_MEMBER');
$field_attrib['write'] = varset($field_attrib['read'], 'e_UC_MEMBER');
$field_attrib['write'] = varset($field_attrib['write'], 'e_UC_MEMBER');
$field_attrib['applicable'] = varset($field_attrib['applicable'], 'e_UC_MEMBER');

// manage parent
Expand Down Expand Up @@ -2183,9 +2183,9 @@ private function manage_extended_field($action, $field_name, $field_attrib, $fie
varset($field_attrib['values'], ''),
varset($field_attrib['default'], ''),
$field_attrib['required'],
defset($field_attrib['read'], e_UC_MEMBER),
defset($field_attrib['write'], e_UC_MEMBER),
defset($field_attrib['applicable'], e_UC_MEMBER),
varset($field_attrib['read'], e_UC_MEMBER),
varset($field_attrib['write'], e_UC_MEMBER),
varset($field_attrib['applicable'], e_UC_MEMBER),
varset($field_attrib['order'], ''),
$field_attrib['parent']
);
Expand Down