Bug 5902: additem.pl should default to set library
This patch makes the additem screen default to selecting the currently set library. If the library is unset, it will default to the first branch alphabetically. Signed-off-by: Nicole C. Engard <nengard@bywatersolutions.com> Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
This commit is contained in:
parent
eeaf2e7c9e
commit
d8e239c23e
1 changed files with 1 additions and 1 deletions
|
@ -570,7 +570,7 @@ my $onlymine = C4::Context->preference('IndependantBranches') &&
|
|||
C4::Context->userenv &&
|
||||
C4::Context->userenv->{flags}!=1 &&
|
||||
C4::Context->userenv->{branch};
|
||||
my $branches = GetBranchesLoop(undef,$onlymine); # build once ahead of time, instead of multiple times later.
|
||||
my $branches = GetBranchesLoop(C4::Context->userenv->{branch},$onlymine); # build once ahead of time, instead of multiple times later.
|
||||
|
||||
# We generate form, from actuel record
|
||||
my @fields;
|
||||
|
|
Loading…
Reference in a new issue