Found a fix in token.token.inc line 648 on:

    foreach ($tokens as $name => $original) {
      switch ($name) {
        case 'title':
          $title = drupal_get_title(); 
          if( (arg(0)=='node') && (arg(1)=='add') && (arg(2)) && (!arg(3)) ) { // added
            $title = filter_xss_admin(check_plain($data['node']->title)); // added
          } // added

Comments

dave reid’s picture

Status: Active » Closed (works as designed)

The token is working as designed. The title of node/add/page is in fact "Create page."

stephenrobinson’s picture

Ah [node:title] works, the node token section is not listed on /admin/config/search/path/patterns in the section "Replacement patterns" for pathauto.