meeting-room-booking-system / mrbs-code

MRBS application code
Other
117 stars 57 forks source link

Private custom field is not working #2263

Open jberanek opened 6 years ago

jberanek commented 6 years ago

Hi friends

I had followed up the documentation to add a custom field for contact number(entry.phone). After setting up this field is private, other users still can see this field. We need these info to be hidden on our MRBS page. Do I miss anything?

Configuration details:

MRBS version    MRBS 1.7.1
$auth['type']   db
$auth['session']    php

config.inc.php details:

$default_view = "month";
$auth["type"] = "db";
$auth["session"] = "php";
$private_override = "private";
$is_private_field['entry.phone'] = true;
$is_mandatory_field['entry.phone'] = true;

Reported by: *anonymous

Original Ticket: mrbs/support-requests/1555

jberanek commented 6 years ago

The $private_override config setting only applies to new areas. If you have an existing area you need to edit the settings for that area through the browser. Login to MRBS as an area, select the area in question, click the Edit icon and then change the settings as required.

Original comment by: campbell-m

jberanek commented 6 years ago

Hi Campbell

Thanks for your reply! I found the privacy settings area and set up private custom field! Thanks a logt!

Original comment by: *anonymous