projects
/
freeside.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1aa750e
)
oops, syntax error in new() check for missing subclass table sub (eek)
author
ivan
<ivan>
Mon, 28 Jan 2002 11:24:50 +0000
(11:24 +0000)
committer
ivan
<ivan>
Mon, 28 Jan 2002 11:24:50 +0000
(11:24 +0000)
FS/FS/Record.pm
patch
|
blob
|
history
diff --git
a/FS/FS/Record.pm
b/FS/FS/Record.pm
index
5c828b7
..
6b7997f
100644
(file)
--- a/
FS/FS/Record.pm
+++ b/
FS/FS/Record.pm
@@
-122,7
+122,7
@@
sub new {
my $self = {};
bless ($self, $class);
- unless
defined ( $self->table
) {
+ unless
( defined ( $self->table )
) {
$self->{'Table'} = shift;
carp "warning: FS::Record::new called with table name ". $self->{'Table'};
}