Just a little fix to allow the "Logged in via CAS as" string to be translated :
Replace :
drupal_set_message("Logged in via CAS as " . $user->name . ".");
With :
drupal_set_message(t("Logged in via CAS as %cas_username.", array('%cas_username' => $user->name)));
Comments
Comment #1
metzlerd commentedFixed in HEAD.
Comment #2
(not verified) commented