Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
2d40c71
newitems.php: use doSearch for getting new games
alice-blue Dec 4, 2024
eb97d6b
searchutil.php: select createdate for game listings so we can use it …
alice-blue Dec 4, 2024
c5fcdb9
`#ratings:` search should use `numRatingsInAvg` not `numRatingsTotal`
dfabulich Jan 18, 2025
c050f71
Search results call it `devsys` instead of `system`
dfabulich Jan 18, 2025
a7d6d0e
newitems.php: remove unnecessary 0 in limit clause
alice-blue Jan 18, 2025
703495c
Merge pull request #8 from dfabulich/use-doSearch-for-newitems
alice-blue Jan 18, 2025
157bf5f
searchutil.php: Add $count_all_possible_rows parameter to doSearch
alice-blue Jan 19, 2025
310ebac
ifdb-recommends.php: Use $count_all_possible_rows parameter in call t…
alice-blue Jan 19, 2025
be1f667
review: Use $count_all_possible_rows parameter and $override_game_fil…
alice-blue Jan 19, 2025
0954a8b
search: Use $count_all_possible_rows parameter in call to doSearch
alice-blue Jan 19, 2025
db7086a
editgame: Use $count_all_possible_rows and $override_game_filter para…
alice-blue Jan 19, 2025
9bc40d4
length($rows) --> count($rows) (to get rid of fatal error)
alice-blue Jan 19, 2025
d016bac
searchutil.php: check for $term rather than a where clause to see if …
alice-blue Jan 19, 2025
96bb618
Correctly exclude sandboxed ratings from `gameRatingsSandbox0`
dfabulich Jan 19, 2025
02c69b3
Merge pull request #1264 from iftechfoundation/fix-sandbox-gameratings
dfabulich Jan 19, 2025
801f985
searchutil.php: Fixed one more spot where we're checking `$where`
dfabulich Jan 19, 2025
d1942d8
Merge branch 'patch-2'
dfabulich Jan 19, 2025
166f2f6
$where --> !$term
alice-blue Jan 19, 2025
b571fc5
Combine conditions & comments
alice-blue Jan 19, 2025
8796aec
Merge branch 'main' into doSearch-need_total_rows-parameter
alice-blue Jan 20, 2025
8f09857
search: Add a comment explaining the warning banner for buried games
dfabulich Jan 20, 2025
0cbb32e
Merge pull request #1253 from iftechfoundation/search-numRatingsInAvg
dfabulich Jan 21, 2025
cb16a72
searchutil.php: Add $count_all_possible_rows parameter to doSearch
alice-blue Jan 19, 2025
1e208ef
ifdb-recommends.php: Use $count_all_possible_rows parameter in call t…
alice-blue Jan 19, 2025
404520b
review: Use $count_all_possible_rows parameter in call to doSearch
alice-blue Jan 19, 2025
3a133f1
search: Use $count_all_possible_rows parameter in call to doSearch
alice-blue Jan 19, 2025
f91e3af
editgame: Use $count_all_possible_rows in call to doSearch
alice-blue Jan 19, 2025
3342cf3
length($rows) --> count($rows) (to get rid of fatal error)
alice-blue Jan 19, 2025
ea64674
Improve logged-out IFDB Recommends search performance
dfabulich Jan 22, 2025
27f50d3
Improve logged-in IFDB Recommends search performance
dfabulich Jan 22, 2025
f3d6803
Merge branch 'main' into filter-games-merged
dfabulich Jan 22, 2025
663cef4
Merge branch 'ifdb-recommends-performance' into filter-games-merged
dfabulich Jan 22, 2025
30cc954
Merge branch 'use-doSearch-for-newitems' into filter-games-merged
dfabulich Jan 22, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion www/components/ifdb-recommends.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function sortBySortorder($a, $b)
$sortby = "ratu"; // Sort the highly rated games to the top of the results.
$maxpicks = 12; // Get the first twelve results. (We want extras so we're not always displaying the same games.)
$limit = "limit 0, $maxpicks";
$browse = 0;
$browse = 1;
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The reasoning for this seems obscure enough that it might be worth explaining in a comment

$count_all_possible_rows = false;


Expand Down