Skip to content

Commit

Permalink
Item13116: fixed use of undefined value
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDaum committed Nov 25, 2014
1 parent 6533770 commit 532a3aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/Foswiki/Plugins/SqlPlugin.pm
Expand Up @@ -18,8 +18,8 @@ package Foswiki::Plugins::SqlPlugin;
use strict;
use warnings;

our $VERSION = '3.00';
our $RELEASE = '3.00';
our $VERSION = '3.01';
our $RELEASE = '3.01';
our $SHORTDESCRIPTION = 'SQL interface for Foswiki';
our $NO_PREFS_IN_TOPIC = 1;
our $core;
Expand Down
2 changes: 1 addition & 1 deletion lib/Foswiki/Plugins/SqlPlugin/Core.pm
Expand Up @@ -44,7 +44,7 @@ sub new {
$this->{defaultDatabase} = $desc->{id} unless defined $this->{defaultDatabase};
}

%{$this->{accessControls}} = %{$Foswiki::cfg{SqlPlugins}{AccessControl}}
%{$this->{accessControls}} = %{$Foswiki::cfg{SqlPlugin}{AccessControl}}
if defined $Foswiki::cfg{SqlPlugin}{AccessControl};

return $this;
Expand Down

0 comments on commit 532a3aa

Please sign in to comment.