Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#1 2007-09-16 18:02:57
- lee
- Member
- From: Normandy, France
- Registered: 2004-06-17
- Posts: 831
Lists with more than 3 li's are broke.
In txp 4.05
- One
- Two
- Three
results in <ul><li></li><li></li><li></li></ul>
- One
- Two
- Three
- Four
results in <ul><li></li><li></li><li></li></ul> <ul><li></li></ul>
Offline
Re: Lists with more than 3 li's are broke.
Works fine at Textile
* One
* Two
* Three
* Four
Produces:
<ul>
<li>One</li>
<li>Two</li>
<li>Three</li>
<li>Four</li>
</ul>
Last edited by jstubbs (2007-09-16 18:24:52)
Offline
#3 2007-09-16 18:26:37
- lee
- Member
- From: Normandy, France
- Registered: 2004-06-17
- Posts: 831
Re: Lists with more than 3 li's are broke.
have you tried it in a txp 4.05 article?
Offline
Re: Lists with more than 3 li's are broke.
hey lee
i think this may apply to you. should also be included in 4.0.6 hopefully within a few weeks (as per ruuds comments)
http://forum.textpattern.com/viewtopic.php?pid=157427#p157427
Offline
Re: Lists with more than 3 li's are broke.
^^ yes, already fixed in SVN. This bug occurs only when using PHP 5.2.4 (or above) and affects the last LI, no matter how many LI’s are in the UL/OL.
Offline
#6 2007-09-16 19:16:42
- lee
- Member
- From: Normandy, France
- Registered: 2004-06-17
- Posts: 831
Re: Lists with more than 3 li's are broke.
Thanks for letting me know guy’s.
Offline
#7 2007-09-19 15:23:08
- carlton.whitehead
- New Member
- Registered: 2007-09-19
- Posts: 1
Re: Lists with more than 3 li's are broke.
ruud wrote:
^^ yes, already fixed in SVN. This bug occurs only when using PHP 5.2.4 (or above) and affects the last LI, no matter how many LI’s are in the UL/OL.
Are you referring to the textpattern SVN, or something else? Is this a broader problem with PHP 5.2.4 that is just exposed by something in textile?
Last edited by carlton.whitehead (2007-09-19 15:23:34)
Offline
Re: Lists with more than 3 li's are broke.
Textile relied on non-documented behaviour when using foreach loops combined with the next function. That behaviour changed in PHP 5.2.4, so we had to patch Textile: TXP SVN changeset 2640
Offline
#9 2007-09-20 16:15:01
- Dio
- New Member
- Registered: 2007-09-20
- Posts: 2
Re: Lists with more than 3 li's are broke.
I am also affected by this problem.
- Is there a work-around for Textpattern 4.0.5?
- Since it will be fixed in Textpattern 4.0.6, when will 4.0.6 be released?
(I see it’s working here – looks like the Textpattern forum is running on PHP < 5.2.4)
Offline
Re: Lists with more than 3 li's are broke.
the fix is posted right above you.
Offline
#11 2007-09-20 18:14:07
- lee
- Member
- From: Normandy, France
- Registered: 2004-06-17
- Posts: 831
Re: Lists with more than 3 li's are broke.
Here: http://dev.textpattern.com/changeset/2640
You’ll need to open and re save existing articles.
Offline
#12 2007-09-20 19:25:03
- Dio
- New Member
- Registered: 2007-09-20
- Posts: 2
Re: Lists with more than 3 li's are broke.
iblastoff wrote:
the fix is posted right above you.
I thought there might be a work-around in Textile itself without having to edit the PHP file. Anyway, I have now edited the file and re-saved my articles so problem solved.
I assume this will be “permanently” fixed in Textpattern 4.0.6?
Offline