Same files must not have different version number

This commit is contained in:
Xavier Guimard 2012-10-15 04:12:21 +00:00
parent dc7b0b8a16
commit b8bd611ccb
7 changed files with 8 additions and 7 deletions

View File

@ -2,6 +2,7 @@ LemonLDAP::NG Core team:
* Xavier Guimard * Xavier Guimard
* Clément Oudot * Clément Oudot
* François-Xavier Deltombe * François-Xavier Deltombe
* Sandro Cazzaniga
* Thomas Chemineau * Thomas Chemineau
Past and present contributors: Past and present contributors:

View File

@ -1,6 +1,6 @@
package Lemonldap::NG::Common; package Lemonldap::NG::Common;
our $VERSION = '1.3.0'; our $VERSION = '1.2.3';
use strict; use strict;

View File

@ -5,7 +5,7 @@
# Alias for Lemonldap::NG::Handler::SharedConf # Alias for Lemonldap::NG::Handler::SharedConf
package Lemonldap::NG::Handler; package Lemonldap::NG::Handler;
our $VERSION = '1.3.0'; our $VERSION = '1.2.3';
use Lemonldap::NG::Handler::SharedConf; use Lemonldap::NG::Handler::SharedConf;
use base qw(Lemonldap::NG::Handler::SharedConf); use base qw(Lemonldap::NG::Handler::SharedConf);

View File

@ -9,7 +9,7 @@ use strict;
use Lemonldap::NG::Handler::SharedConf qw(:all); use Lemonldap::NG::Handler::SharedConf qw(:all);
our $VERSION = '1.0.0'; our $VERSION = '1.2.2';
use base qw(Lemonldap::NG::Handler::SharedConf); use base qw(Lemonldap::NG::Handler::SharedConf);

View File

@ -10,7 +10,7 @@ use Lemonldap::NG::Handler::CGI qw(:globalStorage :locationRules); #inherits
use Lemonldap::NG::Common::Conf; #link protected conf Configuration use Lemonldap::NG::Common::Conf; #link protected conf Configuration
use Lemonldap::NG::Common::Conf::Constants; #inherits use Lemonldap::NG::Common::Conf::Constants; #inherits
our $VERSION = '1.3.0'; our $VERSION = '1.2.3';
our @ISA = qw( our @ISA = qw(
Lemonldap::NG::Handler::CGI Lemonldap::NG::Handler::CGI
Lemonldap::NG::Manager::Downloader Lemonldap::NG::Manager::Downloader

View File

@ -8,7 +8,7 @@ package Lemonldap::NG::Portal::PasswordDBDemo;
use strict; use strict;
use Lemonldap::NG::Portal::Simple; use Lemonldap::NG::Portal::Simple;
our $VERSION = '1.2.0'; our $VERSION = '1.2.2';
## @apmethod int passwordDBInit() ## @apmethod int passwordDBInit()
# Check the use of AuthDemo # Check the use of AuthDemo
@ -40,7 +40,7 @@ sub modifyPassword {
if ( $self->{portalRequireOldPassword} ) { if ( $self->{portalRequireOldPassword} ) {
unless ( $self->{oldpassword} ) { unless ( $self->{oldpassword} ) {
$self->lmLog( "Portal require old password", 'error' ); $self->lmLog( "Portal require old password", 'error' );
return PE_PP_MUST_SUPPLY_OLD_PASSSWORD; return PE_PP_MUST_SUPPLY_OLD_PASSWORD;
} }
} }

View File

@ -11,7 +11,7 @@ use MIME::Lite;
use MIME::Base64; use MIME::Base64;
use Encode; use Encode;
our $VERSION = '1.1.0'; our $VERSION = '1.2.2';
## @method string gen_password(string regexp) ## @method string gen_password(string regexp)
# Generate a complex password based on a regular expression # Generate a complex password based on a regular expression