$items = array();
$items[PRINTMAIL_PATH] = array(
- 'title' => 'Send page by e-mail',
+ 'title' => variable_get('print_mail_text_title', 'Send page by e-mail'),
'page callback' => 'drupal_get_form',
'page arguments' => array('print_mail_form'),
'access callback' => '_print_mail_access',
}
if (!empty($args['path'])) {
$nid = preg_replace('!^node/!', '', drupal_get_normal_path($args['path']));
- if (is_numeric($nid)) {
+ if (ctype_digit($nid)) {
$args['node'] = node_load($nid);
}
}