From 5d3343bd6c73fb1f9a292158438f1e207fd5f6d5 Mon Sep 17 00:00:00 2001 From: Matchu Date: Thu, 4 Aug 2011 10:30:00 -0400 Subject: [PATCH] show twice as many new items --- app/controllers/items_controller.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/controllers/items_controller.rb b/app/controllers/items_controller.rb index 6b7ae582..d42345df 100644 --- a/app/controllers/items_controller.rb +++ b/app/controllers/items_controller.rb @@ -33,8 +33,7 @@ class ItemsController < ApplicationController else respond_to do |format| format.html { - @newest_items = Item.newest.limit(9) - render + @newest_items = Item.newest.limit(18) } format.js { render :json => {:error => '$q required'}} end