mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-16 20:05:14 +02:00
Relocate class files from /include to /src/
dbm, Diaspora, dfrn, and NotificationsManager moved to namespace. Includes and references in files updated.
This commit is contained in:
parent
2a814623d8
commit
6189f6c8e7
31 changed files with 7965 additions and 67 deletions
|
@ -3,8 +3,7 @@
|
|||
use Friendica\App;
|
||||
use Friendica\Core\Config;
|
||||
use Friendica\Core\System;
|
||||
|
||||
require_once('include/dfrn.php');
|
||||
use Friendica\Protocol\Dfrn;
|
||||
|
||||
function display_init(App $a) {
|
||||
|
||||
|
@ -492,7 +491,7 @@ function display_content(App $a, $update = 0) {
|
|||
}
|
||||
|
||||
function displayShowFeed($item_id, $conversation) {
|
||||
$xml = dfrn::itemFeed($item_id, $conversation);
|
||||
$xml = Dfrn::itemFeed($item_id, $conversation);
|
||||
if ($xml == '') {
|
||||
http_status_exit(500);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue