aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers
diff options
context:
space:
mode:
authorLuc Donnet2014-10-15 09:53:44 +0200
committerLuc Donnet2014-10-15 09:53:44 +0200
commit0932dc84aa48aec730b5092f353ecf512e715abc (patch)
tree58194cba215391d8f8caeb79526c488b71521da5 /app/controllers
parent3257cd24ea863177d366342e402c820e029355c7 (diff)
downloadchouette-core-0932dc84aa48aec730b5092f353ecf512e715abc.tar.bz2
Fix display lines in group of line show Refs #0029294 #0029312
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/group_of_lines_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/group_of_lines_controller.rb b/app/controllers/group_of_lines_controller.rb
index 59e933637..3b91f8dd6 100644
--- a/app/controllers/group_of_lines_controller.rb
+++ b/app/controllers/group_of_lines_controller.rb
@@ -10,7 +10,7 @@ class GroupOfLinesController < ChouetteController
def show
@map = GroupOfLineMap.new(resource).with_helpers(self)
- @lines = resource.lines.order(:name).paginate(:page => params[:page])
+ @lines = resource.lines.order(:name)
show! do
build_breadcrumb :show
end