Skip to content
Snippets Groups Projects
Commit 5757e8fe authored by Tim Steiner's avatar Tim Steiner
Browse files

Merge pull request #480 from erasmussen2/issue-457

[gh-457] Show the abbreviated breadcrumb on the front page too
parents b737a87b 4fd916b3
No related branches found
No related tags found
No related merge requests found
......@@ -528,11 +528,10 @@ EOF;
}
/**
* Return the abbreviated site name, assuming it has been set and we're not on the front page.
* Otherwise, it returns the full site name.
* Return the abbreviated site name, assuming it has been set. Otherwise return the full site name.
*/
function unl_wdn_get_site_name_abbreviated() {
if (!drupal_is_front_page() && theme_get_setting('site_name_abbreviation')) {
if (theme_get_setting('site_name_abbreviation')) {
return theme_get_setting('site_name_abbreviation');
}
else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment