A blank line out of a paragraph should not start a new paragraph (as in 4.2). If feature_wiki_paragraph_formatting_add_br is on, an empty line is created on top of the new paragraph.
It comes from lib/tikilib.php line 6838ff
} elseif (!$in_paragraph && !$contains_block) {
// If not in paragraph, first non-blank line; start a paragraph; if not start of div created by plugins
...
in the comment it is stated that the paragraph should only begin at first NON-BLANK line
I have been able to correct it by changing it to:
} elseif (!$in_paragraph && !$contains_block /* bubi: first non-blank line starts a para */ && !empty($tline)) {
// If not in paragraph, first non-blank line; start a paragraph; if not start of div created by plugins
This appears to be solved by r34436 for Tiki 8. Chealer
To help developers solve the bug, we kindly request that you demonstrate your bug on a show2.tiki.org instance. To start, simply select a version and click on "Create show2.tiki.org instance". Once the instance is ready (in a minute or two), as indicated in the status window below, you can then access that instance, login (the initial admin username/password is "admin") and configure the Tiki to demonstrate your bug. Priority will be given to bugs that have been demonstrated on show2.tiki.org.
filename | created | hits | comment | version | filetype | ||
---|---|---|---|---|---|---|---|
No attachments for this item |