[freeside-commits] branch master updated. 6f01c7cd5ed2945e9a999d8dd0ec5f27a26358b0

Ivan ivan at 420.am
Mon Apr 16 11:53:34 PDT 2012


The branch, master has been updated
       via  6f01c7cd5ed2945e9a999d8dd0ec5f27a26358b0 (commit)
      from  9d97b3c2da538eb34c2ec609dd638241fd04d2a8 (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 6f01c7cd5ed2945e9a999d8dd0ec5f27a26358b0
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Mon Apr 16 11:53:33 2012 -0700

    fix disabled events showing up in billing event clone dropdown

diff --git a/httemplate/browse/part_event.html b/httemplate/browse/part_event.html
index 0399643..c06a14f 100644
--- a/httemplate/browse/part_event.html
+++ b/httemplate/browse/part_event.html
@@ -174,7 +174,7 @@ my $html_init =
   qq!<A HREF="${p}edit/part_event.html"><I>Add a new event</I></A>!.
   ' or <SELECT NAME="clone"><OPTION></OPTION>';
 
-foreach my $part_event ( qsearch('part_event', {'diabled'=>''}) ) {
+foreach my $part_event ( qsearch('part_event', {'disabled'=>''}) ) {
   $html_init .=  '<OPTION VALUE="'. $part_event->eventpart. '">'.
                   $part_event->eventpart. ': '. $part_event->event. '</OPTION>';
 }

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

Summary of changes:
 httemplate/browse/part_event.html |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)




More information about the freeside-commits mailing list