[freeside-commits] branch FREESIDE_2_3_BRANCH updated. 7274cc188efe722c252c22489123f728331852a5
Ivan
ivan at 420.am
Mon Apr 16 11:53:35 PDT 2012
The branch, FREESIDE_2_3_BRANCH has been updated
via 7274cc188efe722c252c22489123f728331852a5 (commit)
from 5a07f45117de9b3995a0a3e4ed68c3b42f181550 (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 7274cc188efe722c252c22489123f728331852a5
Author: Ivan Kohler <ivan at freeside.biz>
Date: Mon Apr 16 11:53:34 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