aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module
Commit message (Collapse)AuthorAgeFilesLines
* fix bougus merge to masterMario Vavti2025-04-111-1/+2
|
* cleanup deprecated forum queries and possibly improved performanceMario2025-04-112-35/+3
|
* fix some plink for forum posts and commentsMario2025-04-111-7/+1
| | | | | (cherry picked from commit a5a2d80c5094e0f42a98faa7a97bba0de757ec0f) Co-authored-by: Mario <mario@mariovavti.com>
* fix sse_bs queryMario2025-03-181-5/+5
|
* we require the HTTP signature to be set in the HTTP_AUTHORIZATION field ↵Mario2025-03-181-0/+2
| | | | | | | somewhere down the line (probably in Web/HTTPSig). Make sure it is there. (cherry picked from commit 5188b9cef5053dc22e3b749c841a1f2e46360296) Co-authored-by: Mario <mario@mariovavti.com>
* Merge branch '10.2RC'Mario2025-03-178-109/+172
|\
| * allow to send signed requests from mod zot_probeMario2025-03-121-1/+7
| |
| * print an ugly error message and the destination if OWA failed for some reasonMario2025-03-091-0/+9
| |
| * streamline login pages layout - fix issue #1892Mario2025-03-072-3/+23
| |
| * fix $owner_hash not set correctly when editing and some whitespace fixesMario2025-02-281-20/+20
| |
| * revert adding of additional sort field which was added for testinggMario2025-02-131-5/+5
| |
| * exclude uplinked items from those queries since they are unlikely to be the ↵Mario Vavti2025-02-113-7/+7
| | | | | | | | originals (sourced items from a channel at the same hub)
| * Merge branch 'owa-error-messages' into 'dev'Mario2025-02-011-78/+106
| |\ | | | | | | | | | | | | Add error message on missing owa auth headers See merge request hubzilla/core!2183
| | * Add error message on missing owa auth headersHarald Eilertsen2025-01-291-78/+106
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the /owa endpoint received a request with a missing or invalid Authorization header, it would return an error to the requester, but without any message describing why it failes. This patch adds a message to the error response, so that it will be a bit easier to debug these issues in the future. The owa spec includes a 'message' field in the error response, but makes it optional. Any conforming implementations should accept a response that includes the 'message' field.
| * | possible sql performance improvementsMario Vavti2025-01-301-5/+5
| |/
* / possible sql performance improvementsMario2025-01-301-5/+5
|/ | | | | (cherry picked from commit dc076a4c003124719c15cd681bf0684710d0b93d) Co-authored-by: Mario Vavti <mario@mariovavti.com>
* 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
|
* fix delayed post handling in cron, always set item_delayed if we select a ↵Mario2024-12-081-1/+1
| | | | create date
* 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-061-1/+7
| | | | 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-061-3/+3
|
* filtering censored xchans in mod pubstream queries has possible performance ↵Mario2024-12-051-8/+0
| | | | issues. we will filter them in process_delivery() instead
* 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-271-110/+148
|
* some cleanup for mod magicMario Vavti2024-11-182-25/+32
|
* fix some errors detected by phpstanMario Vavti2024-11-172-2/+5
|
* fix undefined variablesMario2024-11-171-4/+2
|
* Merge branch 'various-phpstan-issues' into 'dev'Mario2024-11-1437-191/+133
|\ | | | | | | | | Several issues discovered by PHPStan See merge request hubzilla/core!2168
| * Several issues discovered by PHPStanHarald Eilertsen2024-11-1437-191/+133
| |
* | fix some conent import issuesMario Vavti2024-11-142-10/+13
| |
* | containers: poll testingMario2024-11-111-2/+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
* | 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-091-5/+0
| |
* | fix regression propagating deletesMario Vavti2024-11-091-2/+2
| |
* | Merge branch 'dev' into containersMario Vavti2024-11-099-26/+26
|\|
| * 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
* | port to containers item_store() continuedMario Vavti2024-11-082-51/+59
| |
* | refactor drop_item[s]() for containersMario Vavti2024-11-084-7/+17
| |
* | Merge branch 'dev' into containersMario Vavti2024-11-081-14/+21
|\|
| * 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.
| * Module\Thing: Don't use $_REQUEST superglobal.Harald Eilertsen2024-11-031-14/+18
| | | | | | | | Replaces all occurences with $_POST or $_GET instead.
* | Merge branch 'dev' into containersMario Vavti2024-11-031-1/+4
|\|
| * Merge branch 'php8.2-deprecations' into 'dev'Mario2024-11-031-1/+4
| |\ | | | | | | | | | | | | Fix deprecations uncovered by running tests on PHP 8.2 See merge request hubzilla/core!2156