Package home | Report new bug | New search | Development Roadmap Status: Open | Feedback | All | Closed Since Version 1.2.3

Bug #5863 mixed <ul> <ol> when using * and #
Submitted: 2005-11-04 09:56 UTC
From: stefan dot kilp at gmx dot net Assigned: toggg
Status: Closed Package: Text_Wiki
PHP Version: 5.0.5 OS: linux
Roadmaps: (Not assigned)    
Subscription  
Comments Add Comment Add patch


Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know! Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem : 11 + 41 = ?

 
 [2005-11-04 09:56 UTC] stefan dot kilp at gmx dot net
Description: ------------ output gets mixed, see result below Test script: --------------- ---- demo2.txt * ein * zwei # nummer # vier ---- end of file ---- demo2.php $filename = 'demo2.txt'; require_once 'Text/Wiki.php'; $handle = fopen($filename, "r"); $contents = fread($handle, filesize($filename)); fclose($handle); $wiki =& new Text_Wiki(); $xhtml = $wiki->transform($contents, 'Xhtml'); echo $xhtml; ---- Expected result: ---------------- * ein * zwei 1.nummer 1. vier ---- or * ein * zwei 1. nummer 1. vier Actual result: -------------- * ein * zwei * nummer 1.vier

Comments

 [2005-11-04 19:58 UTC] toggg
This bug has been fixed in CVS. If this was a documentation problem, the fix will appear on pear.php.net by the end of next Sunday (CET). If this was a problem with the pear.php.net website, the change should be live shortly. Otherwise, the fix will appear in the package's next release. Thank you for the report and for helping us make PEAR better.