[freeside-commits] branch master updated. 9a68154cc0885d05815f5d7e4ab4a64e65a8d45b
Ivan
ivan at 420.am
Wed Feb 4 17:23:26 PST 2015
The branch, master has been updated
via 9a68154cc0885d05815f5d7e4ab4a64e65a8d45b (commit)
from 5310efb6d40b32ae08ae78553fc8721693925da7 (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 9a68154cc0885d05815f5d7e4ab4a64e65a8d45b
Author: Ivan Kohler <ivan at freeside.biz>
Date: Wed Feb 4 17:23:22 2015 -0800
fix package creation / editing errors, RT#33363, fallout from #27943
diff --git a/FS/FS/o2m_Common.pm b/FS/FS/o2m_Common.pm
index 4848649..d237bef 100644
--- a/FS/FS/o2m_Common.pm
+++ b/FS/FS/o2m_Common.pm
@@ -131,8 +131,8 @@ sub process_o2m {
'';
}
-sub process_o2m_qsearch { shift->qsearch( @_ ); }
-sub process_o2m_qsearchs { shift->qsearchs( @_ ); }
+sub process_o2m_qsearch { my $self = shift; qsearch( @_ ); }
+sub process_o2m_qsearchs { my $self = shift; qsearchs( @_ ); }
sub _load_table {
my( $self, $table ) = @_;
-----------------------------------------------------------------------
Summary of changes:
FS/FS/o2m_Common.pm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
More information about the freeside-commits
mailing list