diff options
| author | fukachan <fukachan> | 2002-02-20 14:10:37 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2002-02-20 14:10:37 +0000 |
| commit | a869e41f42b1817d2a3e1e8bd1fa12c335c187f7 (patch) | |
| tree | 6629262dacfaed1df0ddf4c146814e040d9d8240 /fml/lib/FML/Command/Admin/edit.pm | |
| parent | 3352cddbdfd3696ecca7d16cdb5ab1017a54bf2a (diff) | |
| download | fml8-a869e41f42b1817d2a3e1e8bd1fa12c335c187f7.tar.gz fml8-a869e41f42b1817d2a3e1e8bd1fa12c335c187f7.tar.bz2 fml8-a869e41f42b1817d2a3e1e8bd1fa12c335c187f7.zip | |
fix command work again
Diffstat (limited to 'fml/lib/FML/Command/Admin/edit.pm')
| -rw-r--r-- | fml/lib/FML/Command/Admin/edit.pm | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/fml/lib/FML/Command/Admin/edit.pm b/fml/lib/FML/Command/Admin/edit.pm index 6fa585f5..16b540aa 100644 --- a/fml/lib/FML/Command/Admin/edit.pm +++ b/fml/lib/FML/Command/Admin/edit.pm @@ -4,7 +4,7 @@ # All rights reserved. This program is free software; you can # redistribute it and/or modify it under the same terms as Perl itself. # -# $FML: edit.pm,v 1.6 2002/02/13 10:41:16 fukachan Exp $ +# $FML: edit.pm,v 1.7 2002/02/18 14:24:12 fukachan Exp $ # package FML::Command::Admin::edit; @@ -39,6 +39,19 @@ now we can read and write config.cf, not change it. =cut +# Descriptions: standard constructor +# Arguments: OBJ($self) +# Side Effects: none +# Return Value: OBJ +sub new +{ + my ($self) = @_; + my ($type) = ref($self) || $self; + my $me = {}; + return bless $me, $type; +} + + # Descriptions: need lock or not # Arguments: none # Side Effects: none |
