|
From: Benjamin C. <bc...@us...> - 2002-04-07 08:13:55
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv21968/templates/default
Modified Files:
bugdisplay-printable.html bugemail-newbug.txt bugemail.txt
Log Message:
Fixed some outstanding issues with the smarty transition
Index: bugdisplay-printable.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/bugdisplay-printable.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- bugdisplay-printable.html 3 Apr 2002 00:57:50 -0000 1.4
+++ bugdisplay-printable.html 6 Apr 2002 23:47:59 -0000 1.5
@@ -116,11 +116,11 @@
<tr>
<td>
<div align="center">
- <i>----- Posted by {$comments[comment].rreporter|maskemail} at {$comments[comment].created_date|date:TIME_FORMAT} on {$comments[comment].created_date|date:DATE_FORMAT}-----</i>
+ <i>----- Posted by {$comments[comment].login|maskemail} at {$comments[comment].created_date|date:TIME_FORMAT} on {$comments[comment].created_date|date:DATE_FORMAT}-----</i>
<br>
<br>
</div>
- {$comments[comment].rdescription|stripslashes|format_comments|nl2br}
+ {$comments[comment].comment_text|stripslashes|format_comments|nl2br}
<br>
<br>
<br>
Index: bugemail-newbug.txt
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/bugemail-newbug.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- bugemail-newbug.txt 12 Dec 2001 14:42:58 -0000 1.1
+++ bugemail-newbug.txt 6 Apr 2002 23:47:59 -0000 1.2
@@ -3,25 +3,25 @@
INSTEAD FOLLOW BUG'S URL BELOW IN ORDER TO DETAIL BUG:
============================================================================
- Bug #: {bugid} ({bugurl})
- Reported By: {reporter}
+ Bug #: {$bugid} ({$bugurl})
+ Reported By: {$reporter}
----------------------------------------------------------------------------
- Summary: {title}
- URL: {url}
- Product: {project_id}
- Version: {version_id}
- Component: {component_id}
- Status: {status_id}
- Resolution: {resolution_id}
- Severity: {severity_id}
- OS/Version: {os_id}
- Priority: {priority}
- Assigned To: {assignedto}
+ Summary: {$title}
+ URL: {$url}
+ Product: {$project_id}
+ Version: {$version_id}
+ Component: {$component_id}
+ Status: {$status_id}
+ Resolution: {$resolution_id}
+ Severity: {$severity_id}
+ OS/Version: {$os_id}
+ Priority: {$priority}
+ Assigned To: {$assignedto}
============================================================================
-<!-- BEGIN commentblock -->
+{if $showcomments}
COMMENTS
------ Posted by {oldpostedby} at {oldpostedon} -----
-{oldcomments}
+----- Posted by {$oldpostedby} at {$oldpostedon} -----
+{$oldcomments}
-<!-- END commentblock -->
+{/if}
Index: bugemail.txt
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/bugemail.txt,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- bugemail.txt 9 Oct 2001 08:30:37 -0000 1.3
+++ bugemail.txt 6 Apr 2002 23:47:59 -0000 1.4
@@ -3,28 +3,28 @@
INSTEAD FOLLOW BUG'S URL BELOW IN ORDER TO DETAIL BUG:
============================================================================
- Bug #: {bugid} ({bugurl})
-{reporter_stat} Reported By: {reporter}
+ Bug #: {$bugid} ({$bugurl})
+{$reporter_stat} Reported By: {$reporter}
----------------------------------------------------------------------------
-{title_stat} Summary: {title}
-{url_stat} URL: {url}
-{project_id_stat} Product: {project_id}
-{version_id_stat} Version: {version_id}
-{component_id_stat} Component: {component_id}
-{status_id_stat} Status: {status_id}
-{resolution_id_stat} Resolution: {resolution_id}
-{severity_id_stat} Severity: {severity_id}
-{os_id_stat} OS/Version: {os_id}
-{priority_stat} Priority: {priority}
-{assignedto_stat} Assigned To: {assignedto}
+{$title_stat} Summary: {$title}
+{$url_stat} URL: {$url}
+{$project_id_stat} Product: {$project_id}
+{$version_id_stat} Version: {$version_id}
+{$component_id_stat} Component: {$component_id}
+{$status_id_stat} Status: {$status_id}
+{$resolution_id_stat} Resolution: {$resolution_id}
+{$severity_id_stat} Severity: {$severity_id}
+{$os_id_stat} OS/Version: {$os_id}
+{$priority_stat} Priority: {$priority}
+{$assignedto_stat} Assigned To: {$assignedto}
============================================================================
-<!-- BEGIN commentblock -->
+{if $showcomments}
COMMENTS
------ Posted by {oldpostedby} at {oldpostedon} -----
-{oldcomments}
+----- Posted by {$oldpostedby} at {$oldpostedon} -----
+{$oldcomments}
------ Posted by {newpostedby} at {newpostedon} -----
-{newcomments}
+----- Posted by {$newpostedby} at {$newpostedon} -----
+{$newcomments}
-<!-- END commentblock -->
+{/if}
|