The actual link to a node will be something like http://www.my_site.com/your_story_title. The email page module will send a link that says something like http://www.my_site.com/node/view/5. Clicking on the link in the email brings the user to a blank page. I've seen this happen in two different Drupal installations.

Comments

larry moore’s picture

Status: Active » Needs review

Sorry if this is the wrong way to post - my first time trying to help by posting a fix.
:-/

The link in the email was using /node/view/nid.
I simply removed the view/ and it works fine for nodes as well as comments.

Fixed Version

      if($_GET['cid']) {  // this takes care of links to specific comments
        $nodelink=$base_url.'/'.url('node/view/'.$_GET['nid']."#comment-".$_GET['cid']);
      } else {
        $nodelink=$base_url.'/'.url('node/'.$_GET['nid']);
      }

Broke Version

      if($_GET['cid']) {  // this takes care of links to specific comments
        $nodelink=$base_url.'/'.url('node/view/'.$_GET['nid']."#comment-".$_GET['cid']);
      } else {
        $nodelink=$base_url.'/'.url('node/view/'.$_GET['nid']);
      }

-simplymenotu
http://larrymoore.org

darren oh’s picture

Status: Needs review » Closed (duplicate)

Duplicate of issue 17374.