Fix the search in the Video Controller
[cs356-p2-videostore.git] / app / controllers / video_controller.rb
index 34678fc..0e3d99b 100644 (file)
@@ -56,7 +56,7 @@ class VideoController < ApplicationController
   def search
     if request.post?
       @query = params[:q]
-      @videos = Video.find(:all, :conditions => ["title like ?", "%#{query[0]}%"])
+      @videos = Video.find(:all, :conditions => ["title like ?", "%#{@query[0]}%"])
       render :action => 'searchresults'
     else
       render :action => 'search'