Skip to content

Commit

Permalink
Merge pull request #2010 from getnikola/fix-2007
Browse files Browse the repository at this point in the history
fix #2007
  • Loading branch information
ralsina committed Sep 4, 2015
2 parents 2bd9ea5 + 531cc8c commit 5a8b79c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGES.txt
@@ -1,3 +1,11 @@
New in master
=============

Bugfixes
--------

* Don't add stories to author pages (Issue #2007)

New in v7.7.0
=============

Expand Down
3 changes: 2 additions & 1 deletion nikola/plugins/task/authors.py
Expand Up @@ -292,5 +292,6 @@ def _posts_per_author(self):
if self.posts_per_author is None:
self.posts_per_author = defaultdict(list)
for post in self.site.timeline:
self.posts_per_author[post.author()].append(post)
if post.is_post:
self.posts_per_author[post.author()].append(post)
return self.posts_per_author

0 comments on commit 5a8b79c

Please sign in to comment.