Skip to content

Commit

Permalink
Orphan bugfix
Browse files Browse the repository at this point in the history
git-svn-id: http://junebug.rubyforge.org/svn/wiki/trunk@96 6cb1f131-7020-0410-9d7d-f19630c53dbb
  • Loading branch information
tmyrtle committed Apr 22, 2007
1 parent fd30767 commit 8f172c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/junebug/views.rb
Expand Up @@ -157,7 +157,7 @@ def orphans
@pages.each { |p|
li{
a p.title, :href => R(Show, p.title_url)
text ' - empty page' if p.body.empty?
text ' - empty page' if p.body.nil? or p.body.empty?
}
}
}
Expand Down

0 comments on commit 8f172c6

Please sign in to comment.