diff options
author | sembrestels <sembrestels@riseup.net> | 2011-10-13 15:14:50 +0200 |
---|---|---|
committer | sembrestels <sembrestels@riseup.net> | 2011-10-13 15:14:50 +0200 |
commit | 2849c87594ebe62d418c9eff7645697cf328b144 (patch) | |
tree | 238c66b0a94e0cef37a8b124bb75397f88a1b7f5 /start.php | |
parent | 7d4f72110d1eb3ec056fb2b876112dcb6e65cf8e (diff) | |
download | elgg-2849c87594ebe62d418c9eff7645697cf328b144.tar.gz elgg-2849c87594ebe62d418c9eff7645697cf328b144.tar.bz2 |
Fixed breadcrumb in groups profile.
Diffstat (limited to 'start.php')
-rw-r--r-- | start.php | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -61,8 +61,7 @@ function dokuwiki_init(){ } elgg_set_context("dokuwiki"); - elgg_push_breadcrumb(elgg_echo('dokuwiki'), 'dokuwiki/all'); - + $dokuwiki_path = elgg_get_plugins_path().'dokuwiki/lib/dokuwiki/'; $doku = current_dokuwiki_entity(); if (!$doku) // can fail if there is no user and wiki doesnt exist @@ -73,8 +72,6 @@ function dokuwiki_init(){ $entity_guid = $page[0]; $ent = get_entity($entity_guid); - elgg_push_breadcrumb(sprintf(elgg_echo('dokuwiki:wikifrom'),$ent->name)); - if (($ent && $ent instanceof ElggGroup) && $ent->dokuwiki_enable !== 'yes') { // wiki not activated for this group. bail out. forward(); |