diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-02-04 17:23:22 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-02-04 17:23:22 -0800 |
commit | 9a68154cc0885d05815f5d7e4ab4a64e65a8d45b (patch) | |
tree | 190ab8085a6c3cb974c536d3d85704440472fdfe | |
parent | 5310efb6d40b32ae08ae78553fc8721693925da7 (diff) |
fix package creation / editing errors, RT#33363, fallout from #27943
-rw-r--r-- | FS/FS/o2m_Common.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/o2m_Common.pm b/FS/FS/o2m_Common.pm index 4848649d3..d237befa6 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 ) = @_; |