Skip to content

Instantly share code, notes, and snippets.

@tarto-dev
Created September 10, 2014 10:08
Show Gist options
  • Select an option

  • Save tarto-dev/00a8c82b04a597981fc4 to your computer and use it in GitHub Desktop.

Select an option

Save tarto-dev/00a8c82b04a597981fc4 to your computer and use it in GitHub Desktop.
<?php
if (arg(0) == 'user') {
switch (arg(1)) {
case 'register':
drupal_set_title(t('New Accounts'));
break;
case 'password':
drupal_set_title(t('Retrieve Password'));
break;
case '':
case 'login':
drupal_set_title(t('User login'));
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment