[freeside-commits] branch FREESIDE_2_3_BRANCH updated. 623a1884aa23a00446869203099dab5df1e7c2dd
Ivan
ivan at 420.am
Tue Mar 6 13:11:40 PST 2012
The branch, FREESIDE_2_3_BRANCH has been updated
via 623a1884aa23a00446869203099dab5df1e7c2dd (commit)
from 2ecb2499069396f9e041d58bb1b32ee66c316526 (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 623a1884aa23a00446869203099dab5df1e7c2dd
Author: Ivan Kohler <ivan at freeside.biz>
Date: Tue Mar 6 13:11:39 2012 -0800
fix bare "m" getting inserted as an age, causes event browse to error out, incidental to RT#16831
diff --git a/httemplate/edit/process/part_event.html b/httemplate/edit/process/part_event.html
index 6a8ddd1..20066ba 100644
--- a/httemplate/edit/process/part_event.html
+++ b/httemplate/edit/process/part_event.html
@@ -39,6 +39,7 @@
split(/\0/, $value)
};
} elsif ( $info->{'type'} eq 'freq' ) {
+ $value = '0' if !length($value);
$value .= $params->{$cgi_field.'_units'};
}
-----------------------------------------------------------------------
Summary of changes:
httemplate/edit/process/part_event.html | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
More information about the freeside-commits
mailing list