Actions
Defect #22
closedNew Wiki , cannot create new page.
Status:
Closed
Priority:
Normal
Assignee:
-
Category:
-
Target version:
-
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Affected version:
Description
Based on SVN trunk.
When I created a new Wiki and tried to access the new wiki home page I would get the following error
NoMethodError (undefined method `empty?' for nil:NilClass):
/app/controllers/wiki_controller.rb:47:in `edit'
/app/controllers/wiki_controller.rb:27:in `index'
Changing the following line (47 in wiki controller)
@content.text = "h1. #{@page.pretty_title}" if @content.text.empty?
to
@content.text = "h1. #{@page.pretty_title}" if @content.text.nil?
Appears to have fixed it for me, not sure what I have broken yet by doing this ;)
Updated by Thomas Lecavelier over 17 years ago
This patch correct the bug on my redmine for me too.
Updated by Jean-Philippe Lang over 17 years ago
Thanks, i've just fixed in trunk.
Used .blank? instead of .nil?
This was a regression due to the "mysql strict mode"
fix.
Sorry...
Actions