View | Details | Raw Unified | Return to bug 17681
Collapse All | Expand All

(-)a/Koha/Object.pm (-1 / +1 lines)
Lines 134-140 Returns: Link Here
134
sub delete {
134
sub delete {
135
    my ($self) = @_;
135
    my ($self) = @_;
136
136
137
    # Deleting something not in storage thows an exception
137
    # Deleting something not in storage throws an exception
138
    return -1 unless $self->_result()->in_storage();
138
    return -1 unless $self->_result()->in_storage();
139
139
140
    # Return a boolean for succcess
140
    # Return a boolean for succcess
(-)a/acqui/finishreceive.pl (-1 / +1 lines)
Lines 58-64 my $bookfund = $input->param("bookfund"); Link Here
58
my $order            = GetOrder($ordernumber);
58
my $order            = GetOrder($ordernumber);
59
my $new_ordernumber  = $ordernumber;
59
my $new_ordernumber  = $ordernumber;
60
60
61
#need old recievedate if we update the order, parcel.pl only shows the right parcel this way FIXME
61
#need old receivedate if we update the order, parcel.pl only shows the right parcel this way FIXME
62
if ($quantityrec > $origquantityrec ) {
62
if ($quantityrec > $origquantityrec ) {
63
    my @received_items = ();
63
    my @received_items = ();
64
    if(C4::Context->preference('AcqCreateItem') eq 'ordering') {
64
    if(C4::Context->preference('AcqCreateItem') eq 'ordering') {
(-)a/misc/cronjobs/cleanup_database.pl (-1 / +1 lines)
Lines 63-69 Usage: $0 [-h|--help] [--sessions] [--sessdays DAYS] [-v|--verbose] [--zebraqueu Link Here
63
                      of Z39.50 searches
63
                      of Z39.50 searches
64
   --fees DAYS        purge entries accountlines older than DAYS days, where
64
   --fees DAYS        purge entries accountlines older than DAYS days, where
65
                      amountoutstanding is 0 or NULL.
65
                      amountoutstanding is 0 or NULL.
66
                      In the case of --feees, DAYS must be greater than
66
                      In the case of --fees, DAYS must be greater than
67
                      or equal to 1.
67
                      or equal to 1.
68
                      WARNING: Fees and payments may not be deleted together.
68
                      WARNING: Fees and payments may not be deleted together.
69
                      This will not affect the account balance but may be
69
                      This will not affect the account balance but may be
(-)a/misc/release_notes/release_notes_200RC4.txt (-2 / +2 lines)
Lines 56-62 major : Link Here
56
* indicators where stored but not displayed in MARC editor/viewer.
56
* indicators where stored but not displayed in MARC editor/viewer.
57
* book shelves work again (note bookshelves are not avaible in OPAC. they will be added in 2.2.0)
57
* book shelves work again (note bookshelves are not avaible in OPAC. they will be added in 2.2.0)
58
minor :
58
minor :
59
* it's now impossible to create a basket for an inactive supplier (it's of course possible to change supplier datas and recieve a past order)
59
* it's now impossible to create a basket for an inactive supplier (it's of course possible to change supplier datas and receive a past order)
60
* removing "bulk", useless field, in admin/categorie.pl list (NOT in DB, in case someone uses the field)
60
* removing "bulk", useless field, in admin/categorie.pl list (NOT in DB, in case someone uses the field)
61
* removing forced order in admin/thesaurus.pl => mySQL returns datas ordered by relevance in fulltext index if you don't force an order.
61
* removing forced order in admin/thesaurus.pl => mySQL returns datas ordered by relevance in fulltext index if you don't force an order.
62
* Next borrower didn't work in circulation.pl (didn't return to borrower form)
62
* Next borrower didn't work in circulation.pl (didn't return to borrower form)
Lines 67-70 minor : Link Here
67
IMPROVEMENTS:
67
IMPROVEMENTS:
68
* Minor translation & HTML fixes.
68
* Minor translation & HTML fixes.
69
* Adding >>> in biblio editor to change tab.
69
* Adding >>> in biblio editor to change tab.
70
* Adding a "print" link in MARCbiblio : popup a small windows, print the biblio, and closes. Nice for libraries still having a paper catalog.
70
* Adding a "print" link in MARCbiblio : popup a small windows, print the biblio, and closes. Nice for libraries still having a paper catalog.
(-)a/t/Auth_with_shibboleth.t (-3 / +2 lines)
Lines 154-160 subtest "get_login_shib tests" => sub { Link Here
154
    ## debug off
154
    ## debug off
155
    $C4::Auth_with_shibboleth::debug = '0';
155
    $C4::Auth_with_shibboleth::debug = '0';
156
    warnings_are { $login = get_login_shib() }[],
156
    warnings_are { $login = get_login_shib() }[],
157
      "good config with debug off, no warnings recieved";
157
      "good config with debug off, no warnings received";
158
    is( $login, "test1234",
158
    is( $login, "test1234",
159
        "good config with debug off, attribute value returned" );
159
        "good config with debug off, attribute value returned" );
160
160
Lines 165-171 subtest "get_login_shib tests" => sub { Link Here
165
        "shibboleth attribute to match: uid",
165
        "shibboleth attribute to match: uid",
166
        "uid value: test1234"
166
        "uid value: test1234"
167
    ],
167
    ],
168
      "good config with debug enabled, correct warnings recieved";
168
      "good config with debug enabled, correct warnings received";
169
    is( $login, "test1234",
169
    is( $login, "test1234",
170
        "good config with debug enabled, attribute value returned" );
170
        "good config with debug enabled, attribute value returned" );
171
171
172
- 

Return to bug 17681