4a626ef101
Create new Contact\Redir module class
...
- Move /redir route to /contact/redir
2022-11-08 20:12:23 -05:00
18f54f4425
New area "moderation"
...
- Moved several admin pages to the moderation area
- ACL still is checking for administrator credentials
2022-11-08 02:28:42 -05:00
664071a0b1
Quoted reshares containing quoted reshares should now look fine
2022-11-07 20:44:20 -05:00
f13c91b320
Move mod/cal.php and mod/events.php to Module
2022-11-07 19:52:24 +01:00
3bdc20df15
Changed:
...
- added type-hints as follow-up commit to #12130
2022-11-07 19:18:34 +01:00
210200d330
Use different parser modes for Mastodon and Twitter-API
2022-11-06 20:02:43 +00:00
56ac879c92
Issue 2657: Mentions will now be recognized by clients
2022-11-06 05:43:34 +00:00
9fa3df3cbf
"arrat" to "array"
2022-11-05 22:39:15 +00:00
aa2b4e15a3
Issue 11846: Fix client behaviour when following hash tags
2022-11-05 22:35:35 +00:00
4dd2d7ebab
Transmit the quoted part in the source
2022-11-05 16:25:04 +00:00
87291e30a4
Found some more follow-links
2022-10-31 20:58:34 +01:00
58d6e7e2bb
Create Contact\Unfollow module class
2022-10-31 15:31:44 -04:00
5de8fe3a48
Fix unfollowing not showing on contact page
...
- Deleted contact rows kept the relationship status which would keep showing
- Deleting contact rows would also not update the corresponding user-contact record
2022-10-31 15:30:23 -04:00
f569ccbbc2
Code is simplyfied
2022-10-29 22:55:39 +00:00
3c169b534e
Improved handling of native quotes
2022-10-29 22:11:39 +00:00
deccea0228
More functions moved to content class
2022-10-27 05:44:44 +00:00
c65fff6f93
Some more improvements for posts with shares
2022-10-26 17:00:55 +00:00
a7e9457ef2
Merge pull request #12061 from annando/share-rework
...
The "share" handling is improved
2022-10-25 09:04:16 -04:00
2555596158
Merge pull request #12055 from nupplaphil/feat/usersess_decorator
...
Extend `IHandleUserSessions` from `IHandleSessions` and adapt classes
2022-10-25 07:52:23 -04:00
1a0b63659b
Merge remote-tracking branch 'upstream/develop' into share-rework
2022-10-25 08:31:01 +00:00
f54a886a5e
The "share" handling is improved
2022-10-25 06:37:23 +00:00
f03c5c7f89
implement feeback
2022-10-25 08:07:42 +02:00
bf9f09182e
Changes:
...
- added some missing type-hints
- no need for local array `$t` (changed to "anonymous" varriant)
- formatted some arrays
2022-10-24 20:32:24 +02:00
b5bc1b0844
Extend IHandleUserSessions
from IHandleSessions
and adapt classes
2022-10-23 20:41:17 +02:00
Philipp
7b3caca276
Update src/Content/Widget.php
...
Co-authored-by: Hypolite Petovan <hypolite@mrpetovan.com>
2022-10-21 19:35:34 +02:00
44a9683008
Move "submanage" Session value into own methods
2022-10-21 19:35:34 +02:00
cafb23f8f0
Reduce parentheses
2022-10-21 19:35:34 +02:00
d76a2b6ad6
Move DI dependency for Content\Item class
2022-10-21 19:35:32 +02:00
37ff477b55
Move DI dependency for App\Conversation class
2022-10-21 19:35:32 +02:00
b3f9cef94a
UserSession class [3] - Refactor src/ files excluding Module/Model
2022-10-21 19:35:32 +02:00
cfbba97e0a
Fix Error: Uncaught Exception Error: "Class "Friendica\Content\Session" not found"
2022-10-19 19:16:01 +00:00
058abc0336
Simplify boolean statements in Content\Conversation
2022-10-19 08:05:31 -04:00
ee1acba9eb
old boot.php functions replaced in /src
2022-10-19 07:56:25 -04:00
692566d93b
Fix ERROR IHandleSessions
2022-10-19 08:07:12 +02:00
7ac86e49d1
Move Core\Session::get() to DI::session()->get()
2022-10-18 21:10:37 +02:00
ae82737445
Fix errors introduced by PR #11997
2022-10-18 18:32:20 +00:00
Roland Häder
26e0469de7
Merge branch 'develop' into rewrite/gravity-constants
2022-10-18 16:34:40 +02:00
6f68679375
The EOL constant is removed
2022-10-18 12:29:50 +00:00
9bac8153ae
Some more constants are moved to their specific classes
2022-10-17 09:24:32 +00:00
9ffa053c90
Merge remote-tracking branch 'upstream/develop' into linked-posts
2022-10-16 21:51:26 +00:00
f8f0dfa91a
Detect linked posts and add them as quote
2022-10-16 21:37:05 +00:00
e556dc3c31
Add new frio.always_open_compose setting
...
- This setting allows the New Post button to always open the Compose page instead of the modal by default
2022-10-16 11:49:27 -04:00
d826fe0a3b
Refactor files related to the Compose page and frio theme settings
...
- Use dependencies instead of most DI calls in Module\Item\Compose
- Group translation strings in a subkey of the template variables array
- Rewrite array initializations in theme/frio/config
2022-10-16 11:48:28 -04:00
8e1af9277a
Improve quite generation
2022-10-15 13:00:52 +00:00
ebf3b7e62d
Changes:
...
- Content\Item versus Model\Item solved (?)
2022-10-15 00:44:07 +02:00
85ed0742cf
Fixed:
...
- Content\Item versus Model\Item is really confusing!
2022-10-15 00:44:07 +02:00
8f92d1cc8e
Changes:
...
- unified class import, we had these both:
````
use Friendica\Model\Item as ModelItem;
use Friendica\Object\Post as PostObject;
````
In first version the namespace was prefixing class name, in second suffixing it.
2022-10-15 00:44:07 +02:00
da66730e4f
Rewrite:
...
- moved constants GRAVITY_* from boot.php to Friendica\Model\Item
- also rewrote some array initialization:
From:
````
<?php
$arr = [];
$arr['foo'] = "FOO";
````
To:
````
<?php
$arr['foo'] = "FOO";
````
- added a few type-hints
2022-10-15 00:44:06 +02:00
88aceeb27f
Merge remote-tracking branch 'upstream/2022.09-rc' into quote-uri-id
2022-10-14 19:11:15 +00:00
c2e57c5c0e
Return the pageinfo when feed is shared
2022-10-14 04:43:46 +00:00