Skip to content

Commit

Permalink
Merge pull request ledgersmb#1912 from einhverfr/1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
einhverfr committed Jul 30, 2016
2 parents ec37903 + 4c3fd16 commit e02ce1a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Changelog
Expand Up @@ -3,6 +3,9 @@
Changelog for 1.4 Series
Released 2014-09-15

Changelog for 1.4.32
* Moved to findbin from use lib '.' (Chris T, #1911)

Changelog for 1.4.31
* Fixed user with contact all privileges can't create contacts (Chris T #1219)
* Fixed new user with manage users can't see employee (Chris T #1841)
Expand Down
3 changes: 2 additions & 1 deletion lsmb-request.pl
Expand Up @@ -19,7 +19,8 @@ =head1 COPYRIGHT
=cut

package LedgerSMB::Handler;
use lib '.';
use FindBin;
use lib $FindBin::Bin;

use LedgerSMB::Sysconfig;
use LedgerSMB::Locale;
Expand Down
3 changes: 2 additions & 1 deletion old-handler.pl
Expand Up @@ -67,7 +67,8 @@
}
}
package lsmb_legacy;
use lib '.';
use FindBin;
use lib $FindBin::Bin;
use Digest::MD5;
use Try::Tiny;
use LedgerSMB::App_State;
Expand Down
3 changes: 2 additions & 1 deletion rest-handler.pl
@@ -1,6 +1,7 @@
#!/usr/bin/perl
package LedgerSMB::Rest;
use lib '.';
use FindBin;
use lib $FindBin::Bin;

=head1 NAME
Expand Down

0 comments on commit e02ce1a

Please sign in to comment.