Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
MantisCoreFormatting: improve label for internal links
  • Loading branch information
dregad committed May 20, 2014
1 parent 9a4a2d0 commit cf354ef
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugins/MantisCoreFormatting/lang/strings_english.txt
Expand Up @@ -50,6 +50,7 @@ $s_plugin_format_config = 'Configuration';
$s_plugin_format_process_text = 'Text Processing';
$s_plugin_format_process_text_warning_notice = 'Do not turn off unless you really know what you\'re doing. In the off state, cross site scripting (XSS) attacks are possible.';
$s_plugin_format_process_urls = 'URL Processing';
$s_plugin_format_process_buglinks = 'MantisBT Links ( Issue/Issuenote )';
$s_plugin_format_process_buglinks = 'MantisBT internal links (Issues and Issue Notes)';
$s_plugin_format_process_buglinks_info = 'Your configuration defines the <em>Issue</em> tag as "<literal>%s</literal>" and the <em>Issue Note</em> tag as "<literal>%s</literal>"';
$s_plugin_format_enabled = 'On';
$s_plugin_format_disabled = 'Off';
8 changes: 8 additions & 0 deletions plugins/MantisCoreFormatting/pages/config.php
Expand Up @@ -77,6 +77,14 @@
<tr>
<th class="category">
<?php echo lang_get( 'plugin_format_process_buglinks' )?>
<br />
<span class="small"><?php
printf(
lang_get( 'plugin_format_process_buglinks_info' ),
config_get( 'bug_link_tag' ),
config_get( 'bugnote_link_tag' )
);
?></span>
</th>
<td class="center">
<label><input type="radio" name="process_buglinks" value="1" <?php echo( ON == plugin_config_get( 'process_buglinks' ) ) ? 'checked="checked" ' : ''?>/>
Expand Down

0 comments on commit cf354ef

Please sign in to comment.