aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
Commit message (Collapse)AuthorAgeFilesLines
* better pubs notofication fiy and also fix a javascript error and remove last ↵Mario2024-12-211-1/+5
| | | | bit of jquery from notifications
* fix anomaly in pubs notificationMario2024-12-211-2/+0
|
* refactor notifications widget and updateConvItems() to not require jqueryMario2024-12-192-5/+4
|
* introduce item_forwardable() and check it before we call the notifier to ↵Mario2024-12-103-26/+8
| | | | possibly safe some processes - test will follow, also add some other possibly blocking flags to the add item
* pubcrawl: support for inbound add/remove activities and minor cleanupMario2024-12-102-28/+49
|
* fix delayed post handling in cron, always set item_delayed if we select a ↵Mario2024-12-083-28/+20
| | | | create date
* fix expirationMario2024-12-071-4/+3
|
* add more indicators and a new function to return relative time in the past ↵Mario2024-12-071-3/+3
| | | | and the future
* Libzot: remove commented code which duplicates code in Activity::decode_note()Mario2024-12-071-21/+0
|
* more cleanupMario2024-12-071-41/+2
|
* provide a comments disabled indicator and some cleanupMario2024-12-071-39/+8
|
* only allow disable_comments on thread topMario2024-12-071-0/+1
|
* Ãfix issue where poll updates were dismissed due to missing edited update, ↵Mario2024-12-063-4/+13
| | | | fix wrong array key when retaining item, update dreport push to also push the related item
* an attempt to fix some comments on/off anomaliesMario2024-12-063-5/+10
|
* set item_type so that notifier can do the right thingMario2024-12-061-0/+1
|
* filtering censored xchans in mod pubstream queries has possible performance ↵Mario2024-12-052-16/+10
| | | | issues. we will filter them in process_delivery() instead
* also copy the item_restrict field to the add activity and check for this ↵Mario2024-12-022-1/+2
| | | | field in the notifier
* save a loop by ordering results by item_wall and more uuid only lookupMario2024-11-282-9/+9
|
* sql lookup by uuid should be sufficient by now, remove superfluous ↵Mario2024-11-281-5/+1
| | | | require_once()
* Fix and refactor module Admin\Accounts part IHarald Eilertsen2024-11-272-110/+234
|
* some cleanup for mod magicMario Vavti2024-11-182-25/+32
|
* more phpstan errorsMario Vavti2024-11-171-36/+0
|
* fix some errors detected by phpstanMario Vavti2024-11-173-3/+6
|
* fix undefined variablesMario2024-11-172-5/+3
|
* Merge branch 'various-phpstan-issues' into 'dev'Mario2024-11-1453-420/+163
|\ | | | | | | | | Several issues discovered by PHPStan See merge request hubzilla/core!2168
| * Several issues discovered by PHPStanHarald Eilertsen2024-11-1453-420/+163
| |
* | fix some conent import issuesMario Vavti2024-11-143-12/+15
| |
* | fix race condition when updating multiple choice pollsMario2024-11-131-31/+52
| |
* | this is not true anymore - check owner permsMario2024-11-131-1/+0
| |
* | containers: poll testingMario2024-11-112-81/+100
| |
* | fix undefined var warningMario2024-11-111-1/+1
| |
* | Merge branch 'dev' into containersMario Vavti2024-11-101-12/+15
|\|
| * Revert "Module\Item: Make $item_id an object property."Mario2024-11-101-12/+15
| | | | | | This reverts commit 2c17d0b031b4081870d9ff86145e097ee257efb8
* | containers: testing sourced itemsMario Vavti2024-11-101-1/+2
| |
* | Merge branch 'dev' into containersMario Vavti2024-11-101-224/+228
|\|
| * Module\Item: Make $item_id an object property.Harald Eilertsen2024-11-101-15/+12
| | | | | | | | This also allows us to deduplicate initialization and validation.
| * Module\Item: Move processing of zot and as requests to functions.Harald Eilertsen2024-11-101-224/+231
| | | | | | | | | | These seem to be entirely independent, so moving the body of the if statements to separate functions should be fine.
* | remove extensiv logging to syslogMario Vavti2024-11-094-25/+2
| |
* | fix regression propagating deletesMario Vavti2024-11-091-2/+2
| |
* | Merge branch 'dev' into containersMario Vavti2024-11-0910-45/+54
|\|
| * Merge branch 'fix-incorrect-module-imports' into 'dev'Mario2024-11-099-26/+26
| |\ | | | | | | | | | | | | Fix incorrect module imports. See merge request hubzilla/core!2163
| | * Fix incorrect module imports.Harald Eilertsen2024-11-099-26/+26
| | | | | | | | | | | | | | | | | | | | | | | | When importing modules with use statements, they always require the fully qualified module name. Iow, there's no need to prefix them with an extra backslash. Ref: https://www.php.net/manual/en/language.namespaces.importing.php
| * | Thumbs\Epubthumb: Adapt to new version of EPub meta lib.Harald Eilertsen2024-11-081-18/+27
| | | | | | | | | | | | Also fixes a few issues and refactor the code a bit.
| * | Remove epub-meta from libraryHarald Eilertsen2024-11-081-2/+2
| |/
* | make sure to store target information when decoding and indicate contained ↵Mario Vavti2024-11-092-1/+12
| | | | | | | | conversations with a colored border for now
* | port to containers item_store() continuedMario Vavti2024-11-082-51/+59
| |
* | refactor drop_item[s]() for containersMario Vavti2024-11-0810-23/+49
| |
* | Merge branch 'dev' into containersMario Vavti2024-11-082-15/+22
|\|
| * Merge branch 'fix-module-thing' into 'dev'Mario2024-11-061-14/+21
| |\ | | | | | | | | | | | | Fix error adding Things when multiple profiles not enabled See merge request hubzilla/core!2157
| | * Module\Thing: Don't try to escape field that's not presentHarald Eilertsen2024-11-031-1/+4
| | | | | | | | | | | | | | | The `profile_assign` field is only present if the multiple profiles feature is enabled.