mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-21 22:03:49 -07:00
Minor improvements (#1217)
This commit is contained in:
parent
c7187dd4cd
commit
0e7a60ad41
2 changed files with 3 additions and 2 deletions
|
@ -19,7 +19,7 @@
|
|||
- search.php parameter sanitizing [\#1213](https://github.com/torrentpier/torrentpier/pull/1213) ([kovalensky](https://github.com/kovalensky), [belomaxorka](https://github.com/belomaxorka))
|
||||
- Limit execution time for forum file-listing [\#1211](https://github.com/torrentpier/torrentpier/pull/1211) ([kovalensky](https://github.com/kovalensky), [belomaxorka](https://github.com/belomaxorka))
|
||||
- Some reported bugfixes [\#1214](https://github.com/torrentpier/torrentpier/pull/1214) ([belomaxorka](https://github.com/belomaxorka))
|
||||
- Minor improvements [\#1215](https://github.com/torrentpier/torrentpier/pull/1215) ([belomaxorka](https://github.com/belomaxorka))
|
||||
- Minor improvements [\#1215](https://github.com/torrentpier/torrentpier/pull/1215), [\#1217](https://github.com/torrentpier/torrentpier/pull/1217) ([belomaxorka](https://github.com/belomaxorka))
|
||||
|
||||
## [v2.4.0-rc2](https://github.com/torrentpier/torrentpier/tree/v2.4.0-rc2) (2023-12-12)
|
||||
[Full Changelog](https://github.com/torrentpier/torrentpier/compare/v2.4.0-rc1...v2.4.0-rc2)
|
||||
|
|
|
@ -860,8 +860,9 @@ function fetch_search_ids($sql, $search_type = SEARCH_TYPE_POST)
|
|||
}
|
||||
|
||||
// Save results in DB
|
||||
$search_id = make_rand_str(SEARCH_ID_LENGTH);
|
||||
|
||||
if ($items_count > $per_page) {
|
||||
$search_id = make_rand_str(SEARCH_ID_LENGTH);
|
||||
$search_array = implode(',', $items_found);
|
||||
|
||||
$save_in_db = array(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue