From: Kyle M Hall <k...@bywatersolutions.com>

Signed-off-by: Srdjan <srd...@catalyst.net.nz>
---
 koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt | 7 ++++---
 reserve/request.pl                                         | 2 +-
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt 
b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt
index 1f01a69..eb00fee 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt
@@ -610,11 +610,12 @@ function checkMultiHold() {
     <fieldset class="action">
         [% IF ( borrowernumber ) %]
             [% IF ( override_required ) %]
-                <input type="submit" class="warning" value="Place hold" />
+                <input type="submit" class="warning" value="Place holds" />
             [% ELSIF ( none_available ) %]
-                <input type="submit" disabled="disabled" value="Place hold" />
+                <input type="submit" value="Place holds" />
+                <span class="hint">Place holds for all records with available 
items. No holds will be placed for records with no items.</span>
             [% ELSE %]
-                <input type="submit" value="Place hold" />
+                <input type="submit" value="Place holds" />
             [% END %]
         [% END %]
     </fieldset>
diff --git a/reserve/request.pl b/reserve/request.pl
index 1826e00..3b509cc 100755
--- a/reserve/request.pl
+++ b/reserve/request.pl
@@ -297,7 +297,7 @@ foreach my $biblionumber (@biblionumbers) {
     }
 
     if (!@itemnumbers) {
-        $template->param('noitems' => 1);
+        $template->param('noitems' => 1) unless ( $multihold );
         $biblioloopiter{noitems} = 1;
     }
 
-- 
2.7.4
_______________________________________________
Koha-patches mailing list
Koha-patches@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-patches
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to