Fixed a little s/// failure in the user view template.
authorEevee <git@veekun.com>
Mon, 7 Dec 2009 02:16:47 +0000 (18:16 -0800)
committerEevee <git@veekun.com>
Mon, 7 Dec 2009 02:16:47 +0000 (18:16 -0800)
floof/templates/users/view.mako

index eb24b2d..3bff21a 100644 (file)
@@ -21,8 +21,8 @@ ${h.form(url(controller='user_settings', action='rel_toggle', name=c.user.name.l
     % endif
 % endif
 
-<%! from floof.lib.search import parse %>
+<%! from floof.lib.tags import parse %>
 % for gallery in c.this_user.primary_page.galleries:
 <h2>${gallery.string}</h2>
-${macros.thumbs(parse(gallery.tags.string))}
+${macros.thumbs(parse(gallery.search.string))}
 % endfor