Return to Snippet

Revision: 6975
at June 27, 2008 14:49 by tgbdad


Initial Code
<?php
function phptemplate_user_login($form){
  $form['name']['#description'] = t('Enter your NOVELL username.');
  $form['pass']['#description'] = t('Enter your NOVELL password.');
  return drupal_render($form);
}
?>

Initial URL


Initial Description
Place this code in the template.php file of your custom Zen sub-theme to create a friendly reminder that this site uses their LDAP password. In this example, we use Novell Directory Services as our LDAP provider.

Initial Title
Change Drupal Login Block Prompt strings in Zen Theme

Initial Tags
drupal

Initial Language
PHP