diff options
| author | Luc Donnet | 2014-10-15 09:53:44 +0200 |
|---|---|---|
| committer | Luc Donnet | 2014-10-15 09:53:44 +0200 |
| commit | 0932dc84aa48aec730b5092f353ecf512e715abc (patch) | |
| tree | 58194cba215391d8f8caeb79526c488b71521da5 /app/controllers | |
| parent | 3257cd24ea863177d366342e402c820e029355c7 (diff) | |
| download | chouette-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.rb | 2 |
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 |
