diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-02-15 21:27:58 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-02-15 21:27:58 +0000 |
commit | 73f1e093fa882b5e23b498e6605c4698067c47da (patch) | |
tree | 71d6cbdbb80d9b5e950dc15aa86b4e4c066c895e /modules/blogapi | |
parent | 9dacf2f8d7543c8da1b0efa9d814b8fa35b0abe3 (diff) | |
download | brdo-73f1e093fa882b5e23b498e6605c4698067c47da.tar.gz brdo-73f1e093fa882b5e23b498e6605c4698067c47da.tar.bz2 |
- Patch #49462 by Markus: blogapi doesn't output alternative link if frontpage is an alias.
Diffstat (limited to 'modules/blogapi')
-rw-r--r-- | modules/blogapi/blogapi.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blogapi/blogapi.module b/modules/blogapi/blogapi.module index 1b75cd5e9..32129f8c2 100644 --- a/modules/blogapi/blogapi.module +++ b/modules/blogapi/blogapi.module @@ -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'), |