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:
Adam Magness 2017-11-07 19:37:53 -05:00
parent 2a814623d8
commit 6189f6c8e7
31 changed files with 7965 additions and 67 deletions

View file

@ -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);
}