Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk@282058 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
Justin Patrin committed Jun 13, 2009
1 parent 4e57c36 commit 12e29e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Text/Wiki/Render/Tiki/Wikilink.php
Expand Up @@ -28,7 +28,7 @@ function token($options)
} else {
return '(('.$options['page'].
(strlen($options['anchor']) ? '#'.$options['anchor'] : '').
(strlen($options['text']) && /*$options['page'] != $options['text']*/ ? '|' . $options['text'] : '').
(strlen($options['text']) /*&& $options['page'] != $options['text']*/ ? '|' . $options['text'] : '').
'))';
}
}
Expand Down

0 comments on commit 12e29e1

Please sign in to comment.