X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/efdbb22873232827398ba7605f8b35c605c043e9..db4c5f0b56d22815ecc31754271797b2401c9458:/floof/controllers/search.py diff --git a/floof/controllers/search.py b/floof/controllers/search.py index f87ddae..53343dd 100644 --- a/floof/controllers/search.py +++ b/floof/controllers/search.py @@ -5,7 +5,7 @@ from pylons.controllers.util import abort, redirect from pylons import url from floof.lib.base import BaseController, render -from floof.lib.search import do_search +from floof.lib.tags import parse log = logging.getLogger(__name__) @@ -20,7 +20,7 @@ class SearchController(BaseController): return self.save() c.query = request.params.get('query', '') - c.artwork = do_search(c.query) + c.artwork = parse(c.query).all() return render('/index.mako') # TODO: login required