Skip to content
Snippets Groups Projects
Commit 68f842d5 authored by naudefj's avatar naudefj
Browse files

Prepare for initial Drupal 6 release

parent d8a7d6c6
Branches master
Tags 7.x-3.0
No related merge requests found
name = BBCode
description = Allow the use of BBCode in your posts.
; core = 6.x
core = 6.x
......@@ -12,8 +12,8 @@ function bbcode_filter_tips($delta, $format, $long = false) {
return _bbcode_filter_tip();
}
else {
$output = t('You can use !BBCode tags in the text.', array('!BBCode' => l(t('BBCode'), "filter/tips/$format", NULL, NULL, 'filter-bbcode-' . $delta)));
#D6: $output = t('You can use !BBCode tags in the text.', array('!BBCode' => l(t('BBCode'), "filter/tips/$format", array('fragment' => 'filter-bbcode-' . $delta))));
# D5: $output = t('You can use !BBCode tags in the text.', array('!BBCode' => l(t('BBCode'), "filter/tips/$format", NULL, NULL, 'filter-bbcode-' . $delta)));
$output = t('You can use !BBCode tags in the text.', array('!BBCode' => l(t('BBCode'), "filter/tips/$format", array('fragment' => 'filter-bbcode-' . $delta))));
if (variable_get("bbcode_make_links_$format", FALSE)) {
$output .= ' '. t('URLs will automatically be converted to links.');
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment