aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | only count comments if we are in threaded modeMario2025-05-291-2/+7
| | |
* | | improved wordingMario2025-05-291-1/+1
| | |
* | | fix typoMario2025-05-291-1/+1
| | |
* | | fix queries in certain situations returning more results than we need ↵Mario2025-05-292-22/+15
| | | | | | | | | | | | producing unexpected rendering results
* | | bump versionMario2025-05-291-1/+1
| | |
* | | pass permission sql to item_reaction_sql() in case we are a visitor and ↵Mario2025-05-291-8/+13
| | | | | | | | | | | | rename the variable
* | | if we are not in threaded mode default comments limit to 1000Mario2025-05-292-2/+2
| | |
* | | bump versionMario2025-05-291-1/+1
| | |
* | | toplevel comments pagination: initial commitMario2025-05-297-35/+119
| | |
* | | do not check for possibly unset varMario2025-05-281-2/+1
| | |
* | | bump versionMario2025-05-281-1/+1
| | |
* | | more refactor and streamline for re-usability and easier maintenanceMario2025-05-283-201/+121
| | |
* | | update todoMario2025-05-271-1/+3
| | |
* | | minor cleanupMario2025-05-273-15/+3
| | |
* | | fix a undefined var warning and move some definitions closer to where the ↵Mario2025-05-271-2/+4
| | | | | | | | | | | | value is set for better readability
* | | bump versionMario2025-05-271-1/+1
| | |
* | | new version of items_by_parent_ids() and item_reaction_sql() with much ↵Mario2025-05-2712-235/+234
| | | | | | | | | | | | better performance, streamline rsvp naming convention and some preparatory work for comment lazy loading (unfinshed)
* | | remove the word only. the filter icon should be clear enough.Mario2025-05-251-4/+4
| | |
* | | bump versionMario2025-05-251-1/+1
| | |
* | | revert to previous iteration of the parents query function until performance ↵Mario2025-05-256-21/+101
|/ / | | | | | | issues will be resolved and adapt the modules accordingly
* | use else instead of checking for $retMario2025-05-231-3/+1
| |
* | refactor items_by_parent_ids() to accept $thr_parents as an array and ↵Mario2025-05-233-7/+9
| | | | | | | | stringify it here with the escape flag instead of in the caller modules
* | bump versionMario2025-05-231-1/+1
| |
* | Merge branch 'phpstan-fixes' into 'dev'Mario2025-05-235-35/+30
|\ \ | | | | | | | | | | | | Fix a selection of ussues reported by PHPStan See merge request hubzilla/core!2203
| * | Fix undefined variables in Module/Regate.phpHarald Eilertsen2025-05-221-2/+2
| | |
| * | Fix undefined var in Module/Invite.phpHarald Eilertsen2025-05-221-2/+2
| | | | | | | | | | | | | | | | | | The variables $invexpire_n and $invexpire_u was undefined, but references multiple times in a conditional. Just removed them which should cause no changed behaviour.
| * | Remove unused code in Module/Invite.phpHarald Eilertsen2025-05-221-6/+0
| | | | | | | | | | | | | | | The $feedbk variable was set, but never used in the Module\Invite::get() function.
| * | Fix undefined var in Module/Invite.phpHarald Eilertsen2025-05-221-21/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fir ref to undefined $ihave variable in the Module\Invite::get() method. The var was defined later in the method. Also refactor to fix some other strange logic in the same area while I was there. - Moved the logic to cound invites currently in use by a channel to a private function. This should probably be moved further to a Regiter class once we have these things more in order. - Changed the logic checking the configuration for how many invites a channel can use at the same time to just return 4 (the default) instead of going via 'na' and then checking if it's 'na' to then use the default value. - Dropped setting the config to the default if the module is visited by an admin. That belongs somewhere else.
| * | Remove duplicate array key in Lib/ThreadItem.phpHarald Eilertsen2025-05-221-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | The key `parent` was set twice in ThreadItem::get_template_data(), once cast to an intvalue, and later raw from whatever type $item['parent'] held. Since the value not converted to an int was the one used, this is what has been kept in this patch, so as to not change existing behaviour.
| * | Fix undefined variable in Lib/Activity.phpHarald Eilertsen2025-05-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | This looks like a simple typo, using camelCase instead of snake case for the $is_collection_operation variable. Note: However, as it has been undefined, this means it's been treated as always false until now, so this may change some behaviour.
| * | Fix exclude pattern in phpstan configHarald Eilertsen2025-05-221-1/+1
| | |
* | | Merge branch 'update-doxygen-config' into 'dev'Mario2025-05-232-6/+2
|\ \ \ | | | | | | | | | | | | | | | | Minor doxygen config update See merge request hubzilla/core!2202
| * | | Minor doxygen config updateHarald Eilertsen2025-05-222-6/+2
| |/ / | | | | | | | | | | | | - Enable dark mode toggle - Remove empty footer that broke scrolling
* | | refactor query in items_by_parent_ids() to prepare for pagination. Until ↵Mario2025-05-231-32/+127
| | | | | | | | | | | | pagination will be implemented we will load the last 100 comments.
* | | dba_pdo: return results when using common table expressions (CTE)Mario2025-05-231-1/+1
|/ /
* | Revert "implement thread limit"Mario2025-05-211-20/+2
| | | | | | | | This reverts commit be35f612eb9a8c3ed17abe8c4ec82056e03c66f3.
* | implement thread limitMario2025-05-211-2/+20
| |
* | more return early if we have not got the required dataMario2025-05-211-0/+4
| |
* | return early if we have not got the required dataMario2025-05-211-0/+12
| |
* | fix php warningMario2025-05-211-1/+1
| |
* | bump versionMario2025-05-201-1/+1
| |
* | check if function exists - aparently that is not always the caseMario Vavti2025-05-201-1/+1
| |
* | add exif to extensions to installMario Vavti2025-05-201-1/+1
| |
* | guess_image_type(): fix minor issue and add some tests (guessing from ↵Mario Vavti2025-05-205-5/+64
| | | | | | | | getimagesize() and Imagick is not tested)
* | Merge branch 'messages-widget-tests' into 'dev'Mario2025-05-201-0/+83
|\ \ | | | | | | | | | | | | Add a couple of tests for Widget\Messages See merge request hubzilla/core!2200
| * | Add a couple of tests for Widget\MessagesHarald Eilertsen2025-05-191-0/+83
| | | | | | | | | | | | | | | Just a couple of basic tests around listing file tags, to make sure the code runs without any warnings.
* | | since photo_cache images depend on items uese default expire days instead of ↵Mario2025-05-191-2/+3
| | | | | | | | | | | | cache expire days otherwise they might be removed too early (if they have not been removed yet due to cache expire policy)
* | | fix syntax errorMario2025-05-191-1/+1
| | |
* | | add logging on failureMario2025-05-191-0/+2
| | |
* | | refactor guess_image_type()Mario2025-05-191-87/+65
| | |