Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | only count comments if we are in threaded mode | Mario | 2025-05-29 | 1 | -2/+7 | |
| | | | ||||||
* | | | improved wording | Mario | 2025-05-29 | 1 | -1/+1 | |
| | | | ||||||
* | | | fix typo | Mario | 2025-05-29 | 1 | -1/+1 | |
| | | | ||||||
* | | | fix queries in certain situations returning more results than we need ↵ | Mario | 2025-05-29 | 2 | -22/+15 | |
| | | | | | | | | | | | | producing unexpected rendering results | |||||
* | | | bump version | Mario | 2025-05-29 | 1 | -1/+1 | |
| | | | ||||||
* | | | pass permission sql to item_reaction_sql() in case we are a visitor and ↵ | Mario | 2025-05-29 | 1 | -8/+13 | |
| | | | | | | | | | | | | rename the variable | |||||
* | | | if we are not in threaded mode default comments limit to 1000 | Mario | 2025-05-29 | 2 | -2/+2 | |
| | | | ||||||
* | | | bump version | Mario | 2025-05-29 | 1 | -1/+1 | |
| | | | ||||||
* | | | toplevel comments pagination: initial commit | Mario | 2025-05-29 | 7 | -35/+119 | |
| | | | ||||||
* | | | do not check for possibly unset var | Mario | 2025-05-28 | 1 | -2/+1 | |
| | | | ||||||
* | | | bump version | Mario | 2025-05-28 | 1 | -1/+1 | |
| | | | ||||||
* | | | more refactor and streamline for re-usability and easier maintenance | Mario | 2025-05-28 | 3 | -201/+121 | |
| | | | ||||||
* | | | update todo | Mario | 2025-05-27 | 1 | -1/+3 | |
| | | | ||||||
* | | | minor cleanup | Mario | 2025-05-27 | 3 | -15/+3 | |
| | | | ||||||
* | | | fix a undefined var warning and move some definitions closer to where the ↵ | Mario | 2025-05-27 | 1 | -2/+4 | |
| | | | | | | | | | | | | value is set for better readability | |||||
* | | | bump version | Mario | 2025-05-27 | 1 | -1/+1 | |
| | | | ||||||
* | | | new version of items_by_parent_ids() and item_reaction_sql() with much ↵ | Mario | 2025-05-27 | 12 | -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. | Mario | 2025-05-25 | 1 | -4/+4 | |
| | | | ||||||
* | | | bump version | Mario | 2025-05-25 | 1 | -1/+1 | |
| | | | ||||||
* | | | revert to previous iteration of the parents query function until performance ↵ | Mario | 2025-05-25 | 6 | -21/+101 | |
|/ / | | | | | | | issues will be resolved and adapt the modules accordingly | |||||
* | | use else instead of checking for $ret | Mario | 2025-05-23 | 1 | -3/+1 | |
| | | ||||||
* | | refactor items_by_parent_ids() to accept $thr_parents as an array and ↵ | Mario | 2025-05-23 | 3 | -7/+9 | |
| | | | | | | | | stringify it here with the escape flag instead of in the caller modules | |||||
* | | bump version | Mario | 2025-05-23 | 1 | -1/+1 | |
| | | ||||||
* | | Merge branch 'phpstan-fixes' into 'dev' | Mario | 2025-05-23 | 5 | -35/+30 | |
|\ \ | | | | | | | | | | | | | Fix a selection of ussues reported by PHPStan See merge request hubzilla/core!2203 | |||||
| * | | Fix undefined variables in Module/Regate.php | Harald Eilertsen | 2025-05-22 | 1 | -2/+2 | |
| | | | ||||||
| * | | Fix undefined var in Module/Invite.php | Harald Eilertsen | 2025-05-22 | 1 | -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.php | Harald Eilertsen | 2025-05-22 | 1 | -6/+0 | |
| | | | | | | | | | | | | | | | The $feedbk variable was set, but never used in the Module\Invite::get() function. | |||||
| * | | Fix undefined var in Module/Invite.php | Harald Eilertsen | 2025-05-22 | 1 | -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.php | Harald Eilertsen | 2025-05-22 | 1 | -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.php | Harald Eilertsen | 2025-05-22 | 1 | -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 config | Harald Eilertsen | 2025-05-22 | 1 | -1/+1 | |
| | | | ||||||
* | | | Merge branch 'update-doxygen-config' into 'dev' | Mario | 2025-05-23 | 2 | -6/+2 | |
|\ \ \ | | | | | | | | | | | | | | | | | Minor doxygen config update See merge request hubzilla/core!2202 | |||||
| * | | | Minor doxygen config update | Harald Eilertsen | 2025-05-22 | 2 | -6/+2 | |
| |/ / | | | | | | | | | | | | | - Enable dark mode toggle - Remove empty footer that broke scrolling | |||||
* | | | refactor query in items_by_parent_ids() to prepare for pagination. Until ↵ | Mario | 2025-05-23 | 1 | -32/+127 | |
| | | | | | | | | | | | | pagination will be implemented we will load the last 100 comments. | |||||
* | | | dba_pdo: return results when using common table expressions (CTE) | Mario | 2025-05-23 | 1 | -1/+1 | |
|/ / | ||||||
* | | Revert "implement thread limit" | Mario | 2025-05-21 | 1 | -20/+2 | |
| | | | | | | | | This reverts commit be35f612eb9a8c3ed17abe8c4ec82056e03c66f3. | |||||
* | | implement thread limit | Mario | 2025-05-21 | 1 | -2/+20 | |
| | | ||||||
* | | more return early if we have not got the required data | Mario | 2025-05-21 | 1 | -0/+4 | |
| | | ||||||
* | | return early if we have not got the required data | Mario | 2025-05-21 | 1 | -0/+12 | |
| | | ||||||
* | | fix php warning | Mario | 2025-05-21 | 1 | -1/+1 | |
| | | ||||||
* | | bump version | Mario | 2025-05-20 | 1 | -1/+1 | |
| | | ||||||
* | | check if function exists - aparently that is not always the case | Mario Vavti | 2025-05-20 | 1 | -1/+1 | |
| | | ||||||
* | | add exif to extensions to install | Mario Vavti | 2025-05-20 | 1 | -1/+1 | |
| | | ||||||
* | | guess_image_type(): fix minor issue and add some tests (guessing from ↵ | Mario Vavti | 2025-05-20 | 5 | -5/+64 | |
| | | | | | | | | getimagesize() and Imagick is not tested) | |||||
* | | Merge branch 'messages-widget-tests' into 'dev' | Mario | 2025-05-20 | 1 | -0/+83 | |
|\ \ | | | | | | | | | | | | | Add a couple of tests for Widget\Messages See merge request hubzilla/core!2200 | |||||
| * | | Add a couple of tests for Widget\Messages | Harald Eilertsen | 2025-05-19 | 1 | -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 ↵ | Mario | 2025-05-19 | 1 | -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 error | Mario | 2025-05-19 | 1 | -1/+1 | |
| | | | ||||||
* | | | add logging on failure | Mario | 2025-05-19 | 1 | -0/+2 | |
| | | | ||||||
* | | | refactor guess_image_type() | Mario | 2025-05-19 | 1 | -87/+65 | |
| | | |