TEMPLATE CHANGES
==========================
###################################################################
showreport.tpl (fixes highlighting of
tag http://bugs.iris-studios.com/showreport.php?bugid=21):
-------------------------------------------------------------------
Index: templates/showreport.tpl
===================================================================
--- templates/showreport.tpl (revision 769)
+++ templates/showreport.tpl (working copy)
@@ -5,7 +5,7 @@
- {@"Bug Report %1$s"} - $bug[summary]
+ {@"Bug Report %1$s"} - $bug[summary_title]
###################################################################
###################################################################
newreport.tpl, search.tpl, showreport.tpl, global.css, report.css (renames #clear-spill and makes it a class, not an id):
-------------------------------------------------------------------
Index: templates/newreport.tpl
===================================================================
--- templates/newreport.tpl (revision 829)
+++ templates/newreport.tpl (working copy)
@@ -103,7 +103,7 @@
-
+
Index: templates/search.tpl
===================================================================
--- templates/search.tpl (revision 829)
+++ templates/search.tpl (working copy)
@@ -155,7 +155,7 @@
-
+
Index: templates/showreport.tpl
===================================================================
--- templates/showreport.tpl (revision 829)
+++ templates/showreport.tpl (working copy)
@@ -185,7 +185,7 @@
-
+
Index: templates/global.css
===================================================================
--- templates/global.css (revision 829)
+++ templates/global.css (working copy)
@@ -141,6 +141,11 @@
text-align: center;
}
+.clearspill
+{
+ clear: both;
+}
+
/*=====================================================================*\
|| ###################################################################
|| # $HeadURL$
Index: templates/report.css
===================================================================
--- templates/report.css (revision 829)
+++ templates/report.css (working copy)
@@ -36,12 +36,6 @@
margin-left: 50%;
}
-/* if we get overflow, this will block so we don't get spill */
-#clear-spill
-{
- clear: both;
-}
-
###################################################################
###################################################################
showreport.tpl (add a clearspill div to prevent attachment list overflow):
-------------------------------------------------------------------
Index: templates/showreport.tpl
===================================================================
--- templates/showreport.tpl (revision 834)
+++ templates/showreport.tpl (working copy)
@@ -258,6 +258,8 @@
+
+
$comments
###################################################################
###################################################################
trackerhome_bits.tpl (changed the index of the username of the reporter):
-------------------------------------------------------------------
Index: templates/trackerhome_bits.tpl
===================================================================
--- templates/trackerhome_bits.tpl (revision 844)
+++ templates/trackerhome_bits.tpl (revision 843)
@@ -4,7 +4,7 @@
$bug[bugid] |
- $bug[username]
+ $bug[firstreport]
|
$bug[product]
###################################################################
###################################################################
global.css (make the font size slightly bigger and more readable)
-------------------------------------------------------------------
Index: templates/global.css
===================================================================
--- templates/global.css (revision 843)
+++ templates/global.css (working copy)
@@ -23,7 +23,7 @@
margin: 0px;
padding: 0px;
font-family: Verdana, Tahoma, Geneva, "Lucida Grande", Arial, sans-serif;
- font-size: 11px;
+ font-size: 12px;
background-color: rgb(102, 102, 102);
}
###################################################################
###################################################################
userctrl.tpl (added email reporting options)
-------------------------------------------------------------------
Index: templates/userctrl.tpl
===================================================================
--- templates/userctrl.tpl (revision 846)
+++ templates/userctrl.tpl (working copy)
@@ -105,6 +105,98 @@
+
+
+
+ {@"Email Options"}
+
+
+
+
+
+
+
+
+
+
+
###################################################################
r872 : Add guest registration message |