[Rt-commit] r2580 - in experiments/Bamboo: . lib/Bamboo
jesse at bestpractical.com
jesse at bestpractical.com
Sun Apr 3 12:06:14 EDT 2005
Author: jesse
Date: Sun Apr 3 12:06:13 2005
New Revision: 2580
Modified:
experiments/Bamboo/ (props changed)
experiments/Bamboo/lib/Bamboo/Base.pm
experiments/Bamboo/lib/Bamboo/Controller.pm
Log:
r11705 at hualien: jesse | 2005-04-04 00:05:21 +0800
* Switched Init to init
Modified: experiments/Bamboo/lib/Bamboo/Base.pm
==============================================================================
--- experiments/Bamboo/lib/Bamboo/Base.pm (original)
+++ experiments/Bamboo/lib/Bamboo/Base.pm Sun Apr 3 12:06:13 2005
@@ -8,7 +8,7 @@
my $self = {};
bless( $self, $class );
- $self->_Init(@_);
+ $self->_init(@_);
return $self;
}
Modified: experiments/Bamboo/lib/Bamboo/Controller.pm
==============================================================================
--- experiments/Bamboo/lib/Bamboo/Controller.pm (original)
+++ experiments/Bamboo/lib/Bamboo/Controller.pm Sun Apr 3 12:06:13 2005
@@ -7,7 +7,7 @@
use base qw/Bamboo::Base/;
use CGI;
-sub _Init {
+sub _init {
my $self = shift;
$self->{objects_to_act_on} = Bamboo::Controller::ObjectCollection->new();
return $self;
More information about the Rt-commit
mailing list