View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0012633 | mantisbt | html | public | 2010-12-27 08:20 | 2014-12-08 02:08 |
| Reporter | Kirill | Assigned To | dhx | ||
| Priority | high | Severity | crash | Reproducibility | have not tried |
| Status | closed | Resolution | fixed | ||
| Product Version | 1.3.0dev | ||||
| Target Version | 1.3.0-beta.1 | ||||
| Summary | 0012633: Error generated structure-dom in bug_report_page.php | ||||
| Description | Ошибка синтаксического анализа XML: несоответствующий тег. Ожидается: </table>. Error parsing XML: not correct tag. Waiting: </table>. | ||||
| Tags | patch | ||||
| Attached Files | 0012633.patch (1,200 bytes)
From d19c339d473bd9efbd442e416d23046ef0f49269 Mon Sep 17 00:00:00 2001
From: Kirill Krasnov <krasnovforum@gmail.com>
Date: Mon, 27 Dec 2010 15:20:34 +0200
Subject: [PATCH] Fix 0012633: move </td> and </tr> to php check.
---
bug_report_page.php | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/bug_report_page.php b/bug_report_page.php
index a4990f1..b48c786 100644
--- a/bug_report_page.php
+++ b/bug_report_page.php
@@ -531,12 +531,11 @@ print_recently_visited();
<td>
<label><input <?php echo helper_get_tab_index() ?> type="radio" name="view_state" value="<?php echo VS_PUBLIC ?>" <?php check_checked( $f_view_state, VS_PUBLIC ) ?> /> <?php echo lang_get( 'public' ) ?></label>
<label><input <?php echo helper_get_tab_index() ?> type="radio" name="view_state" value="<?php echo VS_PRIVATE ?>" <?php check_checked( $f_view_state, VS_PRIVATE ) ?> /> <?php echo lang_get( 'private' ) ?></label>
- <?php
- }
- ?>
</td>
</tr>
-<?php //Relationship (in case of cloned bug creation...)
+ <?php
+ }
+ //Relationship (in case of cloned bug creation...)
if( $f_master_bug_id > 0 ) {
?>
<tr <?php echo helper_alternate_class() ?>>
--
1.7.3.1.msysgit.0
| ||||
|
MantisBT: master 644a1996 2010-12-27 08:20 Kirill Krasnov Committer: dhx Details Diff |
Fix 0012633: bug_report_page XHTML markup error table tags bug_report_page was producing some invalid XHTML markup due to incorrect placement of closing </td> and </tr> tags. Signed-off-by: David Hicks <hickseydr@optusnet.com.au> |
Affected Issues 0012633 |
|
| mod - bug_report_page.php | Diff File | ||