Skip to content

Commit

Permalink
Fixed 'print_documentaion_link' typo.
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@960 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
Jeroen Latour committed May 14, 2002
1 parent ac88872 commit ce16d11
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions core_html_API.php
Expand Up @@ -238,7 +238,7 @@ function print_login_info() {
# --------------------
# This prints the little [?] link for user help
# The $p_a_name is a link into the documentation.html file
function print_documentaion_link( $p_a_name="" ) {
function print_documentation_link( $p_a_name="" ) {
global $g_documentation_html;

PRINT "<a href=\"$g_documentation_html#$p_a_name\" target=_info>[?]</a>";
Expand Down Expand Up @@ -535,4 +535,4 @@ function print_status_colors() {
PRINT "</table>";
}
# --------------------
?>
?>
18 changes: 9 additions & 9 deletions report_bug_advanced_page.php
Expand Up @@ -106,7 +106,7 @@
</tr>
<tr class="row-1">
<td class="category" width="30%">
<?php echo $s_category ?> <?php print_documentaion_link( "category" ) ?>:
<?php echo $s_category ?> <?php print_documentation_link( "category" ) ?>:
</td>
<td width="70%">
<select name="f_category">
Expand All @@ -116,7 +116,7 @@
</tr>
<tr class="row-2">
<td class="category">
<?php echo $s_reproducibility ?> <?php print_documentaion_link( "reproducibility" ) ?>:
<?php echo $s_reproducibility ?> <?php print_documentation_link( "reproducibility" ) ?>:
</td>
<td>
<select name="f_reproducibility">
Expand All @@ -126,7 +126,7 @@
</tr>
<tr class="row-1">
<td class="category">
<?php echo $s_severity ?> <?php print_documentaion_link( "severity" ) ?>:
<?php echo $s_severity ?> <?php print_documentation_link( "severity" ) ?>:
</td>
<td>
<select name="f_severity">
Expand All @@ -137,7 +137,7 @@
<? if ( access_level_check_greater_or_equal( DEVELOPER ) ) { ?>
<tr class="row-2">
<td class="category">
<?php echo $s_priority ?> <?php print_documentaion_link( "priority" ) ?>:
<?php echo $s_priority ?> <?php print_documentation_link( "priority" ) ?>:
</td>
<td>
<select name="f_priority">
Expand Down Expand Up @@ -241,31 +241,31 @@
</tr>
<tr class="row-1">
<td class="category">
<span class="required">*</span><?php echo $s_summary ?> <?php print_documentaion_link( "summary" ) ?>:
<span class="required">*</span><?php echo $s_summary ?> <?php print_documentation_link( "summary" ) ?>:
</td>
<td>
<input type="text" name="f_summary" size="80" maxlength="128" value="<?php echo $f_summary ?>">
</td>
</tr>
<tr class="row-2">
<td class="category">
<span class="required">*</span><?php echo $s_description ?> <?php print_documentaion_link( "description" ) ?>:
<span class="required">*</span><?php echo $s_description ?> <?php print_documentation_link( "description" ) ?>:
</td>
<td>
<textarea name="f_description" cols="60" rows="5" wrap="virtual"><?php echo $f_description ?></textarea>
</td>
</tr>
<tr class="row-1">
<td class="category">
<?php echo $s_steps_to_reproduce ?> <?php print_documentaion_link( "steps_to_reproduce" ) ?>:
<?php echo $s_steps_to_reproduce ?> <?php print_documentation_link( "steps_to_reproduce" ) ?>:
</td>
<td>
<textarea name="f_steps_to_reproduce" cols="60" rows="5" wrap="virtual"><?php echo $f_steps_to_reproduce ?></textarea>
</td>
</tr>
<tr class="row-2">
<td class="category">
<?php echo $s_additional_information ?> <?php print_documentaion_link( "additional_information" ) ?>:
<?php echo $s_additional_information ?> <?php print_documentation_link( "additional_information" ) ?>:
</td>
<td>
<textarea name="f_additional_info" cols="60" rows="5" wrap="virtual"><?php echo $f_additional_info ?></textarea>
Expand Down Expand Up @@ -293,7 +293,7 @@
</tr>
<tr class="row-1">
<td class="category">
<?php echo $s_report_stay ?> <?php print_documentaion_link( "report_stay" ) ?>:
<?php echo $s_report_stay ?> <?php print_documentation_link( "report_stay" ) ?>:
</td>
<td>
<input type="checkbox" name="f_report_stay" <?php if ( isset($f_report_stay) ) echo "CHECKED"?>> (<?php echo $s_check_report_more_bugs ?>)
Expand Down
16 changes: 8 additions & 8 deletions report_bug_page.php
Expand Up @@ -74,7 +74,7 @@
</tr>
<tr class="row-1">
<td class="category" width="30%">
<?php echo $s_category ?> <?php print_documentaion_link( "category" ) ?>:
<?php echo $s_category ?> <?php print_documentation_link( "category" ) ?>:
</td>
<td width="70%">
<select name="f_category">
Expand All @@ -84,7 +84,7 @@
</tr>
<tr class="row-2">
<td class="category">
<?php echo $s_reproducibility ?> <?php print_documentaion_link( "reproducibility" ) ?>:
<?php echo $s_reproducibility ?> <?php print_documentation_link( "reproducibility" ) ?>:
</td>
<td>
<select name="f_reproducibility">
Expand All @@ -94,7 +94,7 @@
</tr>
<tr class="row-1">
<td class="category">
<?php echo $s_severity ?> <?php print_documentaion_link( "severity" ) ?>:
<?php echo $s_severity ?> <?php print_documentation_link( "severity" ) ?>:
</td>
<td>
<select name="f_severity">
Expand All @@ -105,7 +105,7 @@
<? if ( access_level_check_greater_or_equal( DEVELOPER ) ) { ?>
<tr class="row-2">
<td class="category">
<?php echo $s_priority ?> <?php print_documentaion_link( "priority" ) ?>:
<?php echo $s_priority ?> <?php print_documentation_link( "priority" ) ?>:
</td>
<td>
<select name="f_priority">
Expand All @@ -121,23 +121,23 @@
</tr>
<tr class="row-2">
<td class="category">
<span class="required">*</span><?php echo $s_summary ?> <?php print_documentaion_link( "summary" ) ?>:
<span class="required">*</span><?php echo $s_summary ?> <?php print_documentation_link( "summary" ) ?>:
</td>
<td>
<input type="text" name="f_summary" size="80" maxlength="128" value="<?php echo $f_summary ?>">
</td>
</tr>
<tr class="row-1">
<td class="category">
<span class="required">*</span><?php echo $s_description ?> <?php print_documentaion_link( "description" ) ?>:
<span class="required">*</span><?php echo $s_description ?> <?php print_documentation_link( "description" ) ?>:
</td>
<td>
<textarea name="f_description" cols="60" rows="5" wrap="virtual"><?php echo $f_description ?></textarea>
</td>
</tr>
<tr class="row-2">
<td class="category">
<?php echo $s_additional_information ?> <?php print_documentaion_link( "additional_information" ) ?>:
<?php echo $s_additional_information ?> <?php print_documentation_link( "additional_information" ) ?>:
</td>
<td>
<textarea name="f_additional_info" cols="60" rows="5" wrap="virtual"><?php echo $f_additional_info ?></textarea>
Expand Down Expand Up @@ -165,7 +165,7 @@
</tr>
<tr class="row-1">
<td class="category">
<?php echo $s_report_stay ?> <?php print_documentaion_link( "report_stay" ) ?>:
<?php echo $s_report_stay ?> <?php print_documentation_link( "report_stay" ) ?>:
</td>
<td>
<input type="checkbox" name="f_report_stay" <?php if ( isset($f_report_stay) ) echo "CHECKED"?>> (<?php echo $s_check_report_more_bugs ?>)
Expand Down

0 comments on commit ce16d11

Please sign in to comment.