Lines 98-106
sub GetRecords {
Link Here
|
98 |
UNION |
98 |
UNION |
99 |
(SELECT DISTINCT(biblionumber) FROM items main WHERE $where $order_limit) |
99 |
(SELECT DISTINCT(biblionumber) FROM items main WHERE $where $order_limit) |
100 |
"; |
100 |
"; |
101 |
push @bind_params, @part_bind_params; |
101 |
push @bind_params, (@part_bind_params) x 3; |
102 |
push @bind_params, @part_bind_params; |
|
|
103 |
push @bind_params, @part_bind_params; |
104 |
$sql = "SELECT biblionumber FROM ($sql) main $order_limit"; |
102 |
$sql = "SELECT biblionumber FROM ($sql) main $order_limit"; |
105 |
|
103 |
|
106 |
$ts_sql = " |
104 |
$ts_sql = " |
107 |
- |
|
|