mirror of
https://github.com/friendica/friendica
synced 2025-04-25 13:10:11 +00:00
Fix require_once format
This commit is contained in:
parent
fa3fa42d96
commit
82b423c5ac
21 changed files with 104 additions and 108 deletions
|
@ -14,10 +14,10 @@
|
|||
|
||||
use Friendica\App;
|
||||
|
||||
require_once('include/enotify.php');
|
||||
require_once('include/Scrape.php');
|
||||
require_once('include/Probe.php');
|
||||
require_once('include/group.php');
|
||||
require_once 'include/enotify.php';
|
||||
require_once 'include/group.php';
|
||||
|
||||
function dfrn_request_init(App $a) {
|
||||
|
||||
|
@ -522,8 +522,6 @@ function dfrn_request_post(App $a) {
|
|||
return; // NOTREACHED
|
||||
}
|
||||
|
||||
require_once('include/Scrape.php');
|
||||
|
||||
$parms = Probe::profile(($hcard) ? $hcard : $url);
|
||||
|
||||
if (! count($parms)) {
|
||||
|
@ -767,7 +765,7 @@ function dfrn_request_content(App $a) {
|
|||
}
|
||||
|
||||
if($auto_confirm) {
|
||||
require_once('mod/dfrn_confirm.php');
|
||||
require_once 'mod/dfrn_confirm.php';
|
||||
$handsfree = array(
|
||||
'uid' => $r[0]['uid'],
|
||||
'node' => $r[0]['nickname'],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue