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

(-)a/circ/waitingreserves.pl (-1 / +2 lines)
Lines 126-132 foreach my $num (@getreserves) { Link Here
126
    $getreserv{'itemnumber'}     = $gettitle->{'itemnumber'};
126
    $getreserv{'itemnumber'}     = $gettitle->{'itemnumber'};
127
    $getreserv{'biblionumber'}   = $gettitle->{'biblionumber'};
127
    $getreserv{'biblionumber'}   = $gettitle->{'biblionumber'};
128
    $getreserv{'barcode'}        = $gettitle->{'barcode'};
128
    $getreserv{'barcode'}        = $gettitle->{'barcode'};
129
    $getreserv{'homebranch'}     = GetBranchName($gettitle->{'homebranch'});
129
    $getreserv{'branchname'}     = GetBranchName($gettitle->{'homebranch'});
130
    $getreserv{'homebranch'}     = $gettitle->{'homebranch'};
130
    $getreserv{'holdingbranch'}  = $gettitle->{'holdingbranch'};
131
    $getreserv{'holdingbranch'}  = $gettitle->{'holdingbranch'};
131
    $getreserv{'itemcallnumber'} = $gettitle->{'itemcallnumber'};
132
    $getreserv{'itemcallnumber'} = $gettitle->{'itemcallnumber'};
132
    if ( $gettitle->{'homebranch'} ne $gettitle->{'holdingbranch'} ) {
133
    if ( $gettitle->{'homebranch'} ne $gettitle->{'holdingbranch'} ) {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tmpl (-3 / +2 lines)
Lines 102-108 $.tablesorter.addParser({ Link Here
102
                            <input type="hidden" name="fbr" value="<!-- TMPL_VAR NAME="holdingbranch" -->" />
102
                            <input type="hidden" name="fbr" value="<!-- TMPL_VAR NAME="holdingbranch" -->" />
103
                            <input type="hidden" name="tbr" value="<!-- TMPL_VAR NAME="homebranch" -->" />
103
                            <input type="hidden" name="tbr" value="<!-- TMPL_VAR NAME="homebranch" -->" />
104
                            <!-- TMPL_IF NAME="dotransfer" -->
104
                            <!-- TMPL_IF NAME="dotransfer" -->
105
                            <input type="submit" value="Cancel hold and return to : <!-- TMPL_VAR NAME="homebranch" -->" /> 
105
                            <input type="submit" value="Cancel hold and return to : <!-- TMPL_VAR NAME="branchname" -->" /> 
106
                            <!-- TMPL_ELSE -->
106
                            <!-- TMPL_ELSE -->
107
                            <input type="submit" value="Cancel hold" />
107
                            <input type="submit" value="Cancel hold" />
108
                            <!-- /TMPL_IF -->
108
                            <!-- /TMPL_IF -->
Lines 145-151 $.tablesorter.addParser({ Link Here
145
                            <input type="hidden" name="fbr" value="<!-- TMPL_VAR NAME="holdingbranch" -->" />
145
                            <input type="hidden" name="fbr" value="<!-- TMPL_VAR NAME="holdingbranch" -->" />
146
                            <input type="hidden" name="tbr" value="<!-- TMPL_VAR NAME="homebranch" -->" />
146
                            <input type="hidden" name="tbr" value="<!-- TMPL_VAR NAME="homebranch" -->" />
147
                            <!-- TMPL_IF NAME="dotransfer" -->
147
                            <!-- TMPL_IF NAME="dotransfer" -->
148
                            <input type="submit" value="Cancel hold and return to : <!-- TMPL_VAR NAME="homebranch" -->" />
148
                            <input type="submit" value="Cancel hold and return to : <!-- TMPL_VAR NAME="branchname" -->" />
149
                            <!-- TMPL_ELSE -->
149
                            <!-- TMPL_ELSE -->
150
                            <input type="submit" value="Cancel hold" />
150
                            <input type="submit" value="Cancel hold" />
151
                            <!-- /TMPL_IF -->
151
                            <!-- /TMPL_IF -->
152
- 

Return to bug 6121