[open-ils-commits] [GIT] Evergreen ILS branch master updated. 8b52ac29ef014159b66c38f992ad051b0ef0ab22

Evergreen Git git at git.evergreen-ils.org
Tue Mar 20 16:20:48 EDT 2012


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, master has been updated
       via  8b52ac29ef014159b66c38f992ad051b0ef0ab22 (commit)
      from  5f7fd50c19ccfcb698a48b5c20f6bffe5ab7fea9 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 8b52ac29ef014159b66c38f992ad051b0ef0ab22
Author: Jason Stephenson <jstephenson at mvlc.org>
Date:   Tue Mar 20 13:47:00 2012 -0400

    Fix a couple of templates with multiple class attributes in tags.
    
    There should only be one class attribute on a HTML tag. However,
    multiple classes can be combined in a single attribute argument.
    
    See: http://www.w3schools.com/tags/att_standard_class.asp
    
    Signed-off-by: Jason Stephenson <jstephenson at mvlc.org>
    Signed-off-by: Mike Rylander <mrylander at gmail.com>

diff --git a/Open-ILS/src/templates/acq/invoice/view.tt2 b/Open-ILS/src/templates/acq/invoice/view.tt2
index 38ca873..7e4d489 100644
--- a/Open-ILS/src/templates/acq/invoice/view.tt2
+++ b/Open-ILS/src/templates/acq/invoice/view.tt2
@@ -69,7 +69,7 @@
                     <td><div name='inv_item_type'></div></td>
                     <td class='acq-invoice-center-col'><div name='fund'></div></td>
                     <td><div name='title'></div></td>
-                    <td class='acq-invoice-center-col' class='acq-invoice-billed-col'><div name='cost_billed'></div></td>
+                    <td class='acq-invoice-center-col acq-invoice-billed-col'><div name='cost_billed'></div></td>
                     <td class='acq-invoice-paid-col'><div name='amount_paid'></div></td>
                     <td class='acq-invoice-center-col hide-complete'><a href='javascript:void(0);' name='delete'>Delete</a></td>
                 </tr>
@@ -91,9 +91,9 @@
             <thead>
                 <tr>
                     <th colspan='3'/>
-                    <th class='acq-invoice-center-col' class='acq-invoice-billed-col'>Total</th>
+                    <th class='acq-invoice-center-col acq-invoice-billed-col'>Total</th>
                     <th class='acq-invoice-paid-col'>Total</th>
-                    <th class='acq-invoice-center-col' class='acq-invoice-balance-col'>Balance</th>
+                    <th class='acq-invoice-center-col acq-invoice-balance-col'>Balance</th>
                 </tr>
             </thead>
             <tbody>
diff --git a/Open-ILS/src/templates/opac/password_reset.tt2 b/Open-ILS/src/templates/opac/password_reset.tt2
index 62c65ab..ff9f446 100644
--- a/Open-ILS/src/templates/opac/password_reset.tt2
+++ b/Open-ILS/src/templates/opac/password_reset.tt2
@@ -41,7 +41,7 @@
                     </tr>
                     <tr>
                         <td>
-                            <button class="opac_button" name="submit" class="opac-button" id="submitButton" type="submit">[% l('Submit') %]</button>
+                            <button name="submit" class="opac-button" id="submitButton" type="submit">[% l('Submit') %]</button>
                         </td>
                     </tr>
                 </table>

-----------------------------------------------------------------------

Summary of changes:
 Open-ILS/src/templates/acq/invoice/view.tt2    |    6 +++---
 Open-ILS/src/templates/opac/password_reset.tt2 |    2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list