Home » Text » Text_Wiki » Bug #5861
warning on headings
Details
| Submitted | 2005-11-04 01:44 UTC |
|---|---|
| From | stefan dot kilp at gmx dot net |
| Assigned | toggg |
| Status | Duplicate |
| Package | Text_Wiki |
| PHP Version | 5.0.5 |
| OS | linux |
| Roadmaps | (Not assigned) |
Comments
[2005-11-04 01:44 UTC] stefan dot kilp at gmx dot net
Description:
------------
receiving warnings when using headings, demo1.txt and demo1.php
Test script:
---------------
--- file demo1.txt
+ überschrift
hier folgt eine aufzählung
# eine
# zwei
# drei
und hier noch mal unstrukturiert
* so
* oder so
* oder ganz anders
+ introduction
--- end file
--- demo1.php
require_once 'Text/Wiki.php';
$filename = 'demo1.txt';
$handle = fopen($filename, "r");
$contents = fread($handle, filesize($filename));
fclose($handle);
$wiki =& new Text_Wiki();
$xhtml = $wiki->transform($contents, 'Xhtml');
echo $xhtml;
--- end file
Actual result:
--------------
Notice: Undefined variable: collapse in /opt/lampp/htdocs/lib/pear/Text/Wiki/Render/Xhtml/Heading.php on line 47
Notice: Undefined variable: collapse in /opt/lampp/htdocs/lib/pear/Text/Wiki/Render/Xhtml/Heading.php on line 51
Notice: Undefined variable: collapse in /opt/lampp/htdocs/lib/pear/Text/Wiki/Render/Xhtml/Heading.php on line 47
Notice: Undefined variable: collapse in /opt/lampp/htdocs/lib/pear/Text/Wiki/Render/Xhtml/Heading.php on line 51
überschrift
hier folgt eine aufzählung
1. eine
2. zwei
3. drei
und hier noch mal unstrukturiert
* so
* oder so
* oder ganz anders
introduction