Skip to content
Snippets Groups Projects
Commit 52f644e6 authored by naudefj's avatar naudefj
Browse files

Undo Drupal 6 code for a final D5 release

parent 8b126c19
No related branches found
Tags 5.x-2.0 5.x-2.1
No related merge requests found
name = BBCode
description = Allow the use of BBCode in your posts.
core = 6.x
; core = 6.x
......@@ -12,7 +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", array('fragment' => 'filter-bbcode-' . $delta))));
$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))));
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