You are here

function restws_basic_auth_update_7100 in RESTful Web Services 7

Same name and namespace in other branches
  1. 7.2 restws_basic_auth/restws_basic_auth.install \restws_basic_auth_update_7100()

Set the user name regex to accept all for backwards compatibility.

File

restws_basic_auth/restws_basic_auth.install, line 18
Basic authentication login - install file.

Code

function restws_basic_auth_update_7100() {

  // Set the user name regex to accept all.
  variable_set('restws_basic_auth_user_regex', '/.*/');
}