- Patch #49462 by Markus: blogapi doesn't output alternative link if frontpage is an alias.
parent
9dacf2f8d7
commit
73f1e093fa
|
@ -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'),
|
||||
|
|
|
@ -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'),
|
||||
|
|
Loading…
Reference in New Issue