aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Willingham <founder@kakste.com>2013-03-13 23:56:14 +0000
committerThomas Willingham <founder@kakste.com>2013-03-13 23:56:14 +0000
commitffcba3db81d85ae8bdc56f1772c7675aef56c78e (patch)
tree37325467172a5017581bee6c34a769c12860a350
parented2bcb6855e3d0e74e1b85aeb69e380a562b0c89 (diff)
downloadvolse-hubzilla-ffcba3db81d85ae8bdc56f1772c7675aef56c78e.tar.gz
volse-hubzilla-ffcba3db81d85ae8bdc56f1772c7675aef56c78e.tar.bz2
volse-hubzilla-ffcba3db81d85ae8bdc56f1772c7675aef56c78e.zip
Fix path in photo_ablums.tpl
-rw-r--r--view/tpl/photo_albums.tpl2
-rw-r--r--view/tpl/smarty3/photo_albums.tpl2
2 files changed, 2 insertions, 2 deletions
diff --git a/view/tpl/photo_albums.tpl b/view/tpl/photo_albums.tpl
index eccc3660a..a2e305df5 100644
--- a/view/tpl/photo_albums.tpl
+++ b/view/tpl/photo_albums.tpl
@@ -3,7 +3,7 @@
{{ if $albums }}
<ul>
{{ for $albums as $al }}
-<li><a href="$baseurl/photos/$nick/$al.bin2hex">$al.album</a></li>
+<li><a href="$baseurl/photos/$nick/album/$al.bin2hex">$al.album</a></li>
{{ endfor }}
</ul>
{{ endif }}
diff --git a/view/tpl/smarty3/photo_albums.tpl b/view/tpl/smarty3/photo_albums.tpl
index 8a31e030c..b74c73fd3 100644
--- a/view/tpl/smarty3/photo_albums.tpl
+++ b/view/tpl/smarty3/photo_albums.tpl
@@ -8,7 +8,7 @@
{{if $albums}}
<ul>
{{foreach $albums as $al}}
-<li><a href="{{$baseurl}}/photos/{{$nick}}/{{$al.bin2hex}}">{{$al.album}}</a></li>
+<li><a href="{{$baseurl}}/photos/{{$nick}}/album/{{$al.bin2hex}}">{{$al.album}}</a></li>
{{/foreach}}
</ul>
{{/if}}