Index: trunk/extensions/Poem/Poem.php |
— | — | @@ -39,7 +39,7 @@ |
40 | 40 | /* using newlines in the text will cause the parser to add <p> tags, |
41 | 41 | * which may not be desired in some cases |
42 | 42 | */ |
43 | | - $nl = $param['compact']? '' : "\n"; |
| 43 | + $nl = isset( $param['compact'] ) ? '' : "\n"; |
44 | 44 | |
45 | 45 | if( method_exists( $parser, 'recursiveTagParse' ) ) { |
46 | 46 | //new methods in 1.8 allow nesting <nowiki> in <poem>. |