Skip to content

Commit 26e9e11

Browse files
committed
Reverse the bullet_closed variable result. closed=1 means closed and not open.
1 parent a3f8e46 commit 26e9e11

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

os2web_print_send_to_friend.module

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,10 @@ function os2web_print_send_to_friend_bullet_point_access($bullet_point_id) {
102102
$bullet_point = node_load($bullet_point_id);
103103
if (strcmp($bullet_point->type, 'os2web_meetings_bullet') == 0) {
104104
if ($bullet_point->field_os2web_meetings_bul_closed['und'][0]['value']) {
105-
return TRUE;
106-
}
107-
else {
108105
return FALSE;
109106
}
110107
}
111-
return FALSE;
108+
return TRUE;
112109
}
113110

114111
/**

0 commit comments

Comments
 (0)