Standard stuff
This commit is contained in:
parent
49b22de705
commit
f73389dd12
|
@ -1,8 +1,8 @@
|
|||
<?php
|
||||
use \Friendica\Core\Config;
|
||||
|
||||
require_once("include/photos.php");
|
||||
require_once("include/user.php");
|
||||
require_once('include/photos.php');
|
||||
require_once('include/user.php');
|
||||
|
||||
function cron_run(&$argv, &$argc){
|
||||
global $a;
|
||||
|
|
|
@ -16,7 +16,7 @@ function cronhooks_run(&$argv, &$argc){
|
|||
return;
|
||||
}
|
||||
|
||||
$last = get_config('system','last_cronhook');
|
||||
$last = get_config('system', 'last_cronhook');
|
||||
|
||||
$poll_interval = intval(get_config('system','cronhook_interval'));
|
||||
if(! $poll_interval)
|
||||
|
|
|
@ -7,7 +7,7 @@ function dbupdate_run(&$argv, &$argc) {
|
|||
|
||||
// We are deleting the latest dbupdate entry.
|
||||
// This is done to avoid endless loops because the update was interupted.
|
||||
Config::delete('database','dbupdate_'.DB_UPDATE_VERSION);
|
||||
Config::delete('database', 'dbupdate_'.DB_UPDATE_VERSION);
|
||||
|
||||
update_db($a);
|
||||
}
|
||||
|
|
|
@ -4,15 +4,15 @@ use \Friendica\Core\Config;
|
|||
|
||||
require_once('include/queue_fn.php');
|
||||
require_once('include/html2plain.php');
|
||||
require_once("include/Scrape.php");
|
||||
require_once('include/Scrape.php');
|
||||
require_once('include/diaspora.php');
|
||||
require_once("include/ostatus.php");
|
||||
require_once("include/dfrn.php");
|
||||
require_once('include/ostatus.php');
|
||||
require_once('include/dfrn.php');
|
||||
|
||||
function delivery_run(&$argv, &$argc){
|
||||
global $a;
|
||||
|
||||
require_once("include/datetime.php");
|
||||
require_once('include/datetime.php');
|
||||
require_once('include/items.php');
|
||||
require_once('include/bbcode.php');
|
||||
require_once('include/email.php');
|
||||
|
|
|
@ -6,7 +6,7 @@ function directory_run(&$argv, &$argc){
|
|||
return;
|
||||
}
|
||||
|
||||
$dir = get_config('system','directory');
|
||||
$dir = get_config('system', 'directory');
|
||||
|
||||
if (!strlen($dir)) {
|
||||
return;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
use \Friendica\Core\Config;
|
||||
|
||||
require_once("include/socgraph.php");
|
||||
require_once('include/socgraph.php');
|
||||
require_once('include/datetime.php');
|
||||
|
||||
function discover_poco_run(&$argv, &$argc){
|
||||
|
|
|
@ -7,9 +7,9 @@ require_once('include/socgraph.php');
|
|||
require_once('include/datetime.php');
|
||||
|
||||
function gprobe_run(&$argv, &$argc){
|
||||
if($argc != 2)
|
||||
if ($argc != 2) {
|
||||
return;
|
||||
|
||||
}
|
||||
$url = hex2bin($argv[1]);
|
||||
|
||||
$r = q("SELECT `id`, `url`, `network` FROM `gcontact` WHERE `nurl` = '%s' ORDER BY `id` LIMIT 1",
|
||||
|
|
|
@ -4,9 +4,9 @@ use \Friendica\Core\Config;
|
|||
|
||||
require_once('include/queue_fn.php');
|
||||
require_once('include/html2plain.php');
|
||||
require_once("include/Scrape.php");
|
||||
require_once('include/Scrape.php');
|
||||
require_once('include/diaspora.php');
|
||||
require_once("include/ostatus.php");
|
||||
require_once('include/ostatus.php');
|
||||
require_once('include/salmon.php');
|
||||
|
||||
/*
|
||||
|
@ -45,7 +45,7 @@ require_once('include/salmon.php');
|
|||
function notifier_run(&$argv, &$argc){
|
||||
global $a;
|
||||
|
||||
require_once("include/datetime.php");
|
||||
require_once('include/datetime.php');
|
||||
require_once('include/items.php');
|
||||
require_once('include/bbcode.php');
|
||||
require_once('include/email.php');
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
use \Friendica\Core\Config;
|
||||
|
||||
require_once("include/follow.php");
|
||||
require_once('include/follow.php');
|
||||
|
||||
function RemoveReply($subject) {
|
||||
while (in_array(strtolower(substr($subject, 0, 3)), array("re:", "aw:")))
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
use \Friendica\Core\Config;
|
||||
|
||||
require_once('include/items.php');
|
||||
require_once("include/ostatus.php");
|
||||
require_once('include/ostatus.php');
|
||||
|
||||
function pubsubpublish_run(&$argv, &$argc){
|
||||
|
||||
|
|
|
@ -6,14 +6,15 @@ function update_gcontact_run(&$argv, &$argc){
|
|||
global $a;
|
||||
|
||||
require_once('include/Scrape.php');
|
||||
require_once("include/socgraph.php");
|
||||
require_once('include/socgraph.php');
|
||||
|
||||
logger('update_gcontact: start');
|
||||
|
||||
if(($argc > 1) && (intval($argv[1])))
|
||||
if (($argc > 1) && (intval($argv[1]))) {
|
||||
$contact_id = intval($argv[1]);
|
||||
}
|
||||
|
||||
if(!$contact_id) {
|
||||
if (!$contact_id) {
|
||||
logger('update_gcontact: no contact');
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue