From 20379253a8fa1326e175c0f0bb5faee4aeeea158 Mon Sep 17 00:00:00 2001 From: Eevee Date: Sun, 6 Dec 2009 18:16:47 -0800 Subject: [PATCH] Fixed a little s/// failure in the user view template. --- floof/templates/users/view.mako | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/floof/templates/users/view.mako b/floof/templates/users/view.mako index eb24b2d..3bff21a 100644 --- a/floof/templates/users/view.mako +++ b/floof/templates/users/view.mako @@ -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:

${gallery.string}

-${macros.thumbs(parse(gallery.tags.string))} +${macros.thumbs(parse(gallery.search.string))} % endfor -- 2.7.4