Needs review
Project:
simpleSAMLphp Authentication
Version:
7.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
13 Nov 2013 at 03:08 UTC
Updated:
3 Jun 2020 at 08:19 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
doublejosh commentedAs of PHP 5.3 you can forgo this
explode(',', $my_val);for the super handy str_getcsv() function.The fix is a one line change to the
_simplesamlphp_auth_rolepopulation()function...REPLACE:
WITH TIHS:
WITHIN:
simplesamlphp_auth.moduleComment #2
Stevel commentedAttached a proper patch. A note of warning: this patch makes the module require php 5.3, as opposed to 5.2.5 for Drupal core. PHP 5.3 is already pretty old though.
Comment #3
snufkin commentedI don't really mind the explicit PHP dependence, for the 3.x release we can make it required.
Comment #4
snufkin commentedCommitted, thanks!
Comment #6
Stevel commentedBackported patch for the 2.x branch.
Comment #9
kingdutchCame across this while searching for some other issue. This has commits so it looks like this should be "Fixed"
Comment #10
kingdutchWhoops, noticed that the 2.x version is still maintained but hasn't landed yet. Undoing my mistake.