diff options
author | Mario Vavti <mario@mariovavti.com> | 2019-06-17 10:16:49 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2019-06-17 10:16:49 +0200 |
commit | 9507f191b02c05d4cbbbe0ab3072f5a8211b1312 (patch) | |
tree | 1cd46f3e8387bba8ef8c54aa5cfe6f6cc5cf67fd /Zotlabs/Module | |
parent | 92f5d8c8be71f633f18d22d25ed2e6951c85ee33 (diff) | |
download | volse-hubzilla-9507f191b02c05d4cbbbe0ab3072f5a8211b1312.tar.gz volse-hubzilla-9507f191b02c05d4cbbbe0ab3072f5a8211b1312.tar.bz2 volse-hubzilla-9507f191b02c05d4cbbbe0ab3072f5a8211b1312.zip |
disable events module. it is now disfunctional
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Events.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Zotlabs/Module/Events.php b/Zotlabs/Module/Events.php index e883db49f..dcdbfd233 100644 --- a/Zotlabs/Module/Events.php +++ b/Zotlabs/Module/Events.php @@ -11,6 +11,9 @@ require_once('include/html2plain.php'); class Events extends \Zotlabs\Web\Controller { function post() { + + // this module is deprecated + return; logger('post: ' . print_r($_REQUEST,true), LOGGER_DATA); @@ -245,6 +248,9 @@ class Events extends \Zotlabs\Web\Controller { function get() { + + // this module is deprecated + return; if(argc() > 2 && argv(1) == 'ical') { $event_id = argv(2); |