X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/db4c5f0b56d22815ecc31754271797b2401c9458..03c8b0becd6264301a64e9201588c60c9b588ad1:/floof/controllers/tag.py diff --git a/floof/controllers/tag.py b/floof/controllers/tag.py index 5d13789..1ceaf7c 100644 --- a/floof/controllers/tag.py +++ b/floof/controllers/tag.py @@ -27,7 +27,12 @@ class TagController(BaseController): c.art = h.get_object_or_404(Art, id=art_id) tag_string = request.params.get('tags', '') - add_tags(c.art, tag_string, c.user) + add_tags( + art=c.art, + tag_string=tag_string, + adding_user=c.user, + me=c.user, + ) # Add or remove tags redirect(url('show_art', id=c.art.id))