Skip to content

Instantly share code, notes, and snippets.

@leymannx
Created November 16, 2015 10:02
Show Gist options
  • Save leymannx/c674e8bb21cbf59cfb78 to your computer and use it in GitHub Desktop.
Save leymannx/c674e8bb21cbf59cfb78 to your computer and use it in GitHub Desktop.
Drupal replace trimmed username by full username
/**
* Implements THEME_preprocess_username().
*/
function THEME_preprocess_username(&$vars) {
$vars['name'] = $vars['name_raw'];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment