This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "main Koha release repository".
The branch, master has been updated
via 0002126a2ab0ac38a8d3f144f446dc3ba69dab59 (commit)
via d82aeb352f35ec37fdd62fed7e9a713168a21c28 (commit)
from a215c79cc9ce512eb2994ebfe4bdd07c79fef871 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 0002126a2ab0ac38a8d3f144f446dc3ba69dab59
Author: Jonathan Druart <[email protected]>
Date: Thu Apr 16 16:39:09 2015 +0200
Bug 10355: paramater 'object' lost on the road
Test plan:
1) Go to any detail page in staff
2) Click on the modification log tab
3) Verify, that the object is prefilled with the records biblionumber
and you can also see it as parameter in the url
4) Click a second time on modification log to reset your search
Before this patch, the object parameter was empty.
It now contains the value of the biblionumber.
Signed-off-by: Bernardo Gonzalez Kriegel <[email protected]>
Work as described, no koha-qa errors
http://bugs.koha-community.org/show_bug.cgi?id=10335
Signed-off-by: Katrin Fischer <[email protected]>
Signed-off-by: Tomas Cohen Arazi <[email protected]>
commit d82aeb352f35ec37fdd62fed7e9a713168a21c28
Author: Tomas Cohen Arazi <[email protected]>
Date: Fri Jun 5 12:01:28 2015 -0300
Bug 14344: uninitialized value warning C4/Utils/DataTables/Members.pm
The condition for the assignment depends on $searchtype to be defined
and equal to 'contains'. So this change doesn't change the semantics.
- if $term !~ /^%/
- and $searchtype eq "contain";
+ if (defined $searchtype) && $searchtype eq "contain"
+ && $term !~ /^%/;
To test:
- Home -> Circulation -> Checkout
- Search for a user that does not exist (I searched 'whywouldthisexist') on
the intranet interface.
- Look at the intranet logs
=> FAIL: you get "Use of uninitialized value $searchtype in string eq at.,,"
- Apply the patch
- Repeat the search
=> SUCCESS: No warning
- Sign off :-D
NOTE: Other pages are more forgiving. Tweaked test plan.
Signed-off-by: Mark Tompsett <[email protected]>
Signed-off-by: Katrin Fischer <[email protected]>
Signed-off-by: Tomas Cohen Arazi <[email protected]>
-----------------------------------------------------------------------
Summary of changes:
C4/Utils/DataTables/Members.pm | 4 ++--
koha-tmpl/intranet-tmpl/prog/en/includes/biblio-view-menu.inc | 2 +-
tools/viewlog.pl | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
hooks/post-receive
--
main Koha release repository
_______________________________________________
koha-commits mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-commits