disable wiki if feature disabled, sync updates of delayed publish posts
This commit is contained in:
parent
7f8dcf4f12
commit
bd403276f2
@ -41,7 +41,6 @@ class Cron {
|
|||||||
require_once('include/sharedwithme.php');
|
require_once('include/sharedwithme.php');
|
||||||
apply_updates();
|
apply_updates();
|
||||||
|
|
||||||
|
|
||||||
// expire any expired mail
|
// expire any expired mail
|
||||||
|
|
||||||
q("delete from mail where expires != '%s' and expires < %s ",
|
q("delete from mail where expires != '%s' and expires < %s ",
|
||||||
@ -93,6 +92,18 @@ class Cron {
|
|||||||
intval($rr['id'])
|
intval($rr['id'])
|
||||||
);
|
);
|
||||||
if($x) {
|
if($x) {
|
||||||
|
$z = q("select * from item where id = %d",
|
||||||
|
intval($message_id)
|
||||||
|
);
|
||||||
|
if($z) {
|
||||||
|
xchan_query($z);
|
||||||
|
$sync_item = fetch_post_tags($z);
|
||||||
|
build_sync_packet($sync_item[0]['uid'],
|
||||||
|
[
|
||||||
|
'item' => [ encode_item($sync_item[0],true) ]
|
||||||
|
]
|
||||||
|
);
|
||||||
|
}
|
||||||
Master::Summon(array('Notifier','wall-new',$rr['id']));
|
Master::Summon(array('Notifier','wall-new',$rr['id']));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -15,7 +15,6 @@ class Cron_weekly {
|
|||||||
|
|
||||||
call_hooks('cron_weekly',datetime_convert());
|
call_hooks('cron_weekly',datetime_convert());
|
||||||
|
|
||||||
|
|
||||||
z_check_cert();
|
z_check_cert();
|
||||||
|
|
||||||
require_once('include/hubloc.php');
|
require_once('include/hubloc.php');
|
||||||
|
@ -30,6 +30,11 @@ class Wiki extends \Zotlabs\Web\Controller {
|
|||||||
return login();
|
return login();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(! feature_enabled(\App::$profile_uid,'wiki')) {
|
||||||
|
notice( t('Not found') . EOL);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$tab = 'wiki';
|
$tab = 'wiki';
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user