diff options
| -rw-r--r-- | plugins/format.bithtml.php | 5 | ||||
| -rw-r--r-- | plugins/format.tikiwiki.php | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/plugins/format.bithtml.php b/plugins/format.bithtml.php index cf5ac14..1cd856b 100644 --- a/plugins/format.bithtml.php +++ b/plugins/format.bithtml.php @@ -1,6 +1,6 @@ <?php /** - * @version $Revision: 1.12 $ + * @version $Revision: 1.13 $ * @package liberty * @subpackage plugins_format */ @@ -19,7 +19,8 @@ $pluginParams = array ( 'edit_label' => 'HTML', 'edit_field' => PLUGIN_GUID_BITHTML, 'help_page' => 'HTMLSyntax', - 'plugin_type' => FORMAT_PLUGIN + 'plugin_type' => FORMAT_PLUGIN, + 'linebreak' => '<br />' ); $gLibertySystem->registerPlugin( PLUGIN_GUID_BITHTML, $pluginParams ); diff --git a/plugins/format.tikiwiki.php b/plugins/format.tikiwiki.php index 2af8e22..df591e7 100644 --- a/plugins/format.tikiwiki.php +++ b/plugins/format.tikiwiki.php @@ -1,6 +1,6 @@ <?php /** - * @version $Revision: 1.92 $ + * @version $Revision: 1.93 $ * @package liberty */ global $gLibertySystem; @@ -26,7 +26,8 @@ $pluginParams = array ( 'edit_label' => 'Tiki Wiki Syntax', 'edit_field' => PLUGIN_GUID_TIKIWIKI, 'help_page' => 'TikiWikiSyntax', - 'plugin_type' => FORMAT_PLUGIN + 'plugin_type' => FORMAT_PLUGIN, + 'linebreak' => "\r\n" ); $gLibertySystem->registerPlugin( PLUGIN_GUID_TIKIWIKI, $pluginParams ); |
