diff options
author | Friendika <info@friendika.com> | 2011-09-28 04:19:42 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-09-28 04:19:42 -0700 |
commit | d0f45bf28167ddb4c4d4361b44d75b19157fbffb (patch) | |
tree | 7a85c920cbd15b7e96dffcb98a77210bb2780ddc | |
parent | 360a46178b6f189a7ad4485fea65403463561149 (diff) | |
download | volse-hubzilla-d0f45bf28167ddb4c4d4361b44d75b19157fbffb.tar.gz volse-hubzilla-d0f45bf28167ddb4c4d4361b44d75b19157fbffb.tar.bz2 volse-hubzilla-d0f45bf28167ddb4c4d4361b44d75b19157fbffb.zip |
apps broken in all themes, apps link misplaced in testbubble
-rw-r--r-- | index.php | 1 | ||||
-rw-r--r-- | view/apps.tpl | 2 | ||||
-rw-r--r-- | view/theme/testbubble/nav.tpl | 2 |
3 files changed, 2 insertions, 3 deletions
@@ -140,7 +140,6 @@ call_hooks('app_menu', $arr); $a->apps = $arr['app_menu']; - /** * * We have already parsed the server path into $a->argc and $a->argv diff --git a/view/apps.tpl b/view/apps.tpl index 61ea9ee5f..4c7f8c94c 100644 --- a/view/apps.tpl +++ b/view/apps.tpl @@ -2,6 +2,6 @@ <ul> {{ for $apps as $ap }} - <li><a href="$ap.url">$ap.name</a></li> + <li>$ap</li> {{ endfor }} </ul> diff --git a/view/theme/testbubble/nav.tpl b/view/theme/testbubble/nav.tpl index 359d01bc1..a2171d431 100644 --- a/view/theme/testbubble/nav.tpl +++ b/view/theme/testbubble/nav.tpl @@ -29,6 +29,7 @@ <li><a id="nav-search-link" class="nav-link $nav.search.2" href="$nav.search.0" title="$nav.search.1">$nav.search.1</a></li> <li><a id="nav-directory-link" class="nav-link $nav.directory.2" href="$nav.directory.0" title="$nav.directory.1">$nav.directory.1</a></li> + {{ if $nav.apps }}<li><a id="nav-apps-link" class="nav-link $nav.apps.2" href="$nav.apps.0" title="$nav.apps.1">$nav.apps.1</a></li>{{ endif }} {{ if $nav.notifications }}<li><a id="nav-notify-link" class="nav-commlink nav-sep $nav.notifications.2" href="$nav.notifications.0">$nav.notifications.1</a></li>{{ endif }} {{ if $nav.messages }}<li><a id="nav-messages-link" class="nav-commlink $nav.messages.2" href="$nav.messages.0">$nav.messages.1</a></li>{{ endif }} @@ -49,7 +50,6 @@ </div> - {{ if $nav.apps }}<a id="nav-apps-link" class="nav-link $nav.apps.2" href="$nav.apps.0" title="$nav.apps.1">$nav.apps.1</a>{{ endif }} </nav> |