Roland Häder
ba1c1049d6
Changes:
...
- added some type-hints
- added some documentation
- used self::exists() instead of DBA::exists('user', ['uid' => $uid])
2022-07-23 21:58:00 +02:00
Roland Häder
a2a7d04fa1
Changed double-quotes to single
2022-07-23 21:58:00 +02:00
Philipp
b5c293762e
Merge pull request #11766 from MrPetovan/bug/11765-nodeinfo-usage
...
Add expected "usage.users" property to all versions of NodeInfo
2022-07-23 20:57:30 +02:00
Hypolite Petovan
edc49ec9b4
Add expected "users" property to NodeInfo usage property for all versions
2022-07-23 13:21:44 -04:00
Michael
6a19639ac2
Standards
2022-07-23 14:10:07 +00:00
Michael
5d6eb4670a
We now store the conversation as well
2022-07-23 13:58:14 +00:00
Michael
abf39ff9cf
Merge remote-tracking branch 'upstream/develop' into enqueue-posts
2022-07-23 12:55:34 +00:00
Michael
8c602071c2
Bookwyrm posts now work
2022-07-23 12:50:15 +00:00
Michael
7eb410bed7
Conversation/context is now stored
2022-07-23 06:52:43 +00:00
Philipp
805d6440e6
Merge pull request #11761 from tobiasd/20220722-zh-cn
...
update to the zh-cn translation THX shykana
2022-07-22 08:07:04 +02:00
Tobias Diekershoff
34e2ed614b
update to the zh-cn translation THX shykana
2022-07-22 07:32:20 +02:00
Michael
54cebf5a88
Remove test code
2022-07-21 12:42:26 +00:00
Michael
4c5e9f206e
Remove ignored undo
2022-07-21 11:47:23 +00:00
Michael
99f7270e18
Improved workerqueue handling
2022-07-21 08:55:45 +00:00
Michael
3966bff8a1
Fix standards
2022-07-21 08:14:47 +00:00
Michael
2e39cebcb9
Process the replies
2022-07-21 07:08:17 +00:00
Michael
4930e77eb3
We are now setting the corresponding worker id
2022-07-21 07:05:38 +00:00
Michael
28fb022425
Reset the recursion depth at a different place
2022-07-21 06:26:31 +00:00
Michael
c775833117
Use deferred tasks
2022-07-21 06:23:55 +00:00
Michael
d4a536137d
database.sql updated, standards fixed
2022-07-21 05:42:53 +00:00
Michael
4a1fb1da12
Hourly process pending queue entries
2022-07-21 05:33:01 +00:00
Michael
1d13574225
Fetching of missing posts is reworked
2022-07-21 05:16:14 +00:00
Hypolite Petovan
650e05bcb5
Merge pull request #11758 from Quix0r/fixes/wrong-variable-name
...
Fixed variable name + used empty()
2022-07-20 07:55:38 -04:00
Hypolite Petovan
561230d1ab
Merge pull request #11757 from annando/diaspora
...
Fix processing of incoming Diaspora messages
2022-07-20 07:54:46 -04:00
Roland Häder
4b5ae32ec6
Changes:
...
- ops, fixed variable name (thanks to @annando)
- also used empty() for an empty array (and false/null)
2022-07-20 11:54:28 +02:00
Michael Vogel
fc52296a77
Merge branch 'develop' into diaspora
2022-07-20 08:12:30 +02:00
Michael
c20c0a1812
Restore the original functionality
2022-07-20 05:47:30 +00:00
Michael
138a15404f
Fix processing of incoming Diaspora messages
2022-07-20 05:38:53 +00:00
Michael
ee0da5d6f9
Fix processing of incoming Diaspora messages
2022-07-20 05:38:22 +00:00
Michael
7dcd02938d
Remove entries from queue / relay detection
2022-07-20 05:37:40 +00:00
Philipp
c35e11e01f
Merge pull request #11755 from tobiasd/fix11752
...
wrong parameter for BaseURL get in smoothly theme
2022-07-20 07:19:45 +02:00
Philipp
42655571eb
Merge pull request #11756 from tobiasd/20220720-pl
...
PL translation update THX strebski
2022-07-20 07:18:55 +02:00
Tobias Diekershoff
66d77112dc
PL translation update THX strebski
2022-07-20 07:03:05 +02:00
Tobias Diekershoff
d6123976f5
wrong parameter for BaseURL get in smoothly theme
...
Fixes at least the smoothly aspect pf #11752 other themes brokeness could not be reproduced on my node.
2022-07-20 06:58:26 +02:00
Hypolite Petovan
163f0aa14d
Merge pull request #11754 from Quix0r/rewrites/protocol-diaspora
...
Rewrote a lot local variables in createProfileData() + other changes
2022-07-19 20:36:06 -04:00
Roland Häder
1fbda27aad
Changes:
...
- rewrote a lot local variables to an array and returned it instead of an
anonymous array
- added more debug/warning logging in case something went wrong -> lesser guessing! ;-)
- changed double-quote to single
2022-07-20 01:08:15 +02:00
Hypolite Petovan
d69ac56338
Merge pull request #11753 from Quix0r/fixes/missing-contact-array
...
Fixed missing $contact array, at least initialize it empty
2022-07-19 17:58:02 -04:00
Hypolite Petovan
078e619023
Merge pull request #11750 from Quix0r/fixes/type-hints-doctag
...
Fixes/type hints doctag
2022-07-19 17:57:28 -04:00
Roland Häder
2ef0566ba5
Fixed:
...
- "Undefined variable: contact in .../src/Protocol/Diaspora.php on line 4097
Trying to access array offset on value of type null in .../src/Protocol/Diaspora.php on line 4097"
- see https://github.com/friendica/friendica/issues/11632#issuecomment-1189465336
2022-07-19 23:46:09 +02:00
Roland Häder
3c540517e7
Ops
2022-07-19 23:40:29 +02:00
Roland Häder
cf8698afe6
This is the correct way:
...
<?php
if (!isset($foo['account_removed) || $foo['account_removed'])
?>
2022-07-19 18:08:18 +02:00
Roland Häder
4e5179a7b3
Changes:
...
- added some missing type-hints
- fixed some documentation (e.g. empty * line between @param and @return/throws)
2022-07-19 18:02:38 +02:00
Hypolite Petovan
4a11773d7e
Merge pull request #11748 from Quix0r/fixes/e_notice-account_removed
...
Fixed E_NOTICE, for some strange reason 'account_removed' isn't around?
2022-07-18 18:23:42 -04:00
Roland Häder
cb2a052a70
Fixed E_NOTICE, for some strange reason 'account_removed' isn't around?
2022-07-18 23:49:58 +02:00
Michael
a676cf8bed
Merge remote-tracking branch 'upstream/develop' into enqueue-posts
2022-07-18 14:05:04 +00:00
Michael
ce38e63399
Add and delete entries
2022-07-18 14:03:49 +00:00
Hypolite Petovan
42d411712b
Merge pull request #11742 from annando/server-detection
...
Improved server detection
2022-07-18 08:50:59 -04:00
Hypolite Petovan
2e9d1a9046
Merge pull request #11746 from annando/warn
...
Check for GMP module
2022-07-18 08:49:50 -04:00
Michael
ac47aed1b4
Merge remote-tracking branch 'upstream/develop' into enqueue-posts
2022-07-18 05:32:44 +00:00
Michael
af8e059990
Renamed platform definition file
2022-07-18 03:48:19 +00:00