Revision 1138
Added by Ruud about 15 years ago
class.wb.php | ||
---|---|---|
216 | 216 |
|
217 | 217 |
// Get the current users group ids |
218 | 218 |
function get_groups_id() { |
219 |
return split(",", $_SESSION['GROUPS_ID']);
|
|
219 |
return explode(",", $_SESSION['GROUPS_ID']);
|
|
220 | 220 |
} |
221 | 221 |
|
222 | 222 |
// Get the current users group name |
Also available in: Unified diff
Fixed bug in droplets. Multiple droplets with the same parameter did not extract the new parameter. (problem introduced by code optimisations for WB2.8)
Fixed usage of the depriciated (PHP 5.3.0) split() function in class.wb. (ticket #772)
Fixed notice ob_end_clean..failed to delete buffer. (ticket #779)