Merge https://github.com/friendica/red into pending_merge
This commit is contained in:
commit
9f5bfca28d
@ -78,6 +78,7 @@ Zot is the great new communicaton protocol invented especially for the RedMatrix
|
||||
[url=https://github.com/friendica/red]Main Website[/url]
|
||||
[url=https://github.com/friendica/red-addons]Addon Website[/url]
|
||||
[url=https://zothub.com/channel/one]Development Channel[/url]
|
||||
[url=https://federated.social/channel/postgres]Postgres-specific RedMatrix Admin Support Channel[/url]
|
||||
|
||||
[url=[baseurl]/help/credits]RedMatrix Credits[/url]
|
||||
|
||||
|
@ -2919,7 +2919,7 @@ function zot_process_message_request($data) {
|
||||
|
||||
$r = q("select hubloc_guid, hubloc_url, hubloc_sitekey, hubloc_network, hubloc_flags, hubloc_callback, hubloc_host
|
||||
from hubloc where hubloc_hash = '%s' and not (hubloc_flags & %d)>0
|
||||
and not (hubloc_status & %d)>0 group by hubloc_sitekey",
|
||||
and not (hubloc_status & %d)>0 ",
|
||||
dbesc($sender_hash),
|
||||
intval(HUBLOC_FLAGS_DELETED),
|
||||
intval(HUBLOC_OFFLINE)
|
||||
|
@ -33,7 +33,7 @@ function parse_htconfig($file) {
|
||||
function get_configtype(array $data) {
|
||||
if(!isset($data['host'], $data['user'], $data['pass'], $data['data']))
|
||||
return 'none';
|
||||
if($data['type'] == 1)
|
||||
if(@$data['type'] == 1)
|
||||
return 'pgsql';
|
||||
return 'mysql';
|
||||
}
|
||||
@ -112,7 +112,7 @@ foreach(array('install','include','mod','view') as $dir) {
|
||||
}
|
||||
|
||||
$cfgfile = '.htconfig.php';
|
||||
if($argv[1] == '--resume') {
|
||||
if($argc >= 2 && $argv[1] == '--resume') {
|
||||
if($argc < 4) {
|
||||
echo "Resume usage {$argv[0]} --resume <table> <row>\n";
|
||||
exit();
|
||||
|
@ -52,4 +52,4 @@
|
||||
SELECT SETVAL('public.xign_id_seq', COALESCE(MAX(id), 1) ) FROM public.xign;
|
||||
SELECT SETVAL('public.xlink_xlink_id_seq', COALESCE(MAX(xlink_id), 1) ) FROM public.xlink;
|
||||
SELECT SETVAL('public.xtag_xtag_id_seq', COALESCE(MAX(xtag_id), 1) ) FROM public.xtag;
|
||||
|
||||
SELECT SETVAL('public.xperm_xp_id_seq', COALESCE(MAX(xp_id), 1) ) FROM public.xperm;
|
||||
|
Reference in New Issue
Block a user