Closed (fixed)
Project:
Subscribe
Version:
4.7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
15 Nov 2006 at 01:10 UTC
Updated:
29 Jan 2010 at 14:24 UTC
A problem with drupal setting: clean URLs=off (disabled).
Some code to change in function theme_external_node():
...
$item[] = t('<a href="%remote-url">Visit this page</a>', array('%remote-url' => $remote_url. "node/$node->remote_nid"));
$item[] = t('Authored by: <a href="%remote-author-url">%remote-author</a>', array('%remote-author' => $node->remote_author, '%remote-author-url' => $remote_url. "user/$node->remote_uid"));
...To add "?q=" for clean URLs=off:
...
$item[] = t('<a href="%remote-url">Visit this page</a>', array('%remote-url' => $remote_url. "?q=node/$node->remote_nid"));
$item[] = t('Authored by: <a href="%remote-author-url">%remote-author</a>', array('%remote-author' => $node->remote_author, '%remote-author-url' => $remote_url. "?q=user/$node->remote_uid"));
...
Comments
Comment #1
voidberg commentedClosing this since it relates the 4.7 version.