more bugfixes. last of this round of syntaxCheck.t fixes.
This commit is contained in:
parent
9b867ab627
commit
f8de599f35
11 changed files with 40 additions and 31 deletions
|
|
@ -619,6 +619,13 @@ sub new {
|
|||
my $self = {};
|
||||
my $class = shift;
|
||||
$self->{_session} = shift;
|
||||
my $output;
|
||||
my $i = 1;
|
||||
while (my @data = caller($i)) {
|
||||
$output .= "\t".join(",",@data)."\n";
|
||||
$i++;
|
||||
}
|
||||
print $output."\n\n";
|
||||
$self->{authMethod} = shift;
|
||||
my $userId = shift || $self->{_session}->user->userId;
|
||||
$self->{user} = $self->{_session}->user;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue