Skip to content

Commit

Permalink
RC3.
Browse files Browse the repository at this point in the history
  • Loading branch information
parkr committed May 27, 2014
1 parent 04c3327 commit fc045f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/jekyll-paginate/pager.rb
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def self.in_hierarchy(source, page_dir, paginate_path)
# Returns the pagination path as a string
def self.paginate_path(site, num_page)
return nil if num_page.nil?
return Generators::Pagination.first_page_url(site) if num_page <= 1
return Pagination.first_page_url(site) if num_page <= 1
format = site.config['paginate_path']
format = format.sub(':num', num_page.to_s)
ensure_leading_slash(format)
Expand Down
2 changes: 1 addition & 1 deletion lib/jekyll-paginate/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Jekyll
module Paginate
VERSION = "1.0.0.rc2"
VERSION = "1.0.0.rc3"
end
end

0 comments on commit fc045f3

Please sign in to comment.