- Patch #49462 by Markus: blogapi doesn't output alternative link if frontpage is an alias.

4.7.x
Dries Buytaert 2006-02-15 21:27:58 +00:00
parent 9dacf2f8d7
commit 73f1e093fa
2 changed files with 2 additions and 2 deletions

View File

@ -574,7 +574,7 @@ function blogapi_settings() {
function blogapi_menu($may_cache) {
$items = array();
if ($_GET['q'] == variable_get('site_frontpage', 'node')) {
if (drupal_get_path_alias($_GET['q']) == variable_get('site_frontpage', 'node')) {
drupal_add_link(array('rel' => 'EditURI',
'type' => 'application/rsd+xml',
'title' => t('RSD'),

View File

@ -574,7 +574,7 @@ function blogapi_settings() {
function blogapi_menu($may_cache) {
$items = array();
if ($_GET['q'] == variable_get('site_frontpage', 'node')) {
if (drupal_get_path_alias($_GET['q']) == variable_get('site_frontpage', 'node')) {
drupal_add_link(array('rel' => 'EditURI',
'type' => 'application/rsd+xml',
'title' => t('RSD'),