use Friendica\Core\Worker;
use Friendica\Database\DBA;
use Friendica\DI;
+use Friendica\Model\Contact;
use Friendica\Model\Event;
use Friendica\Model\Item;
use Friendica\Model\User;
];
$action = ($event_id == '') ? 'new' : 'event/' . $event_id;
- $onerror_path = 'events/' . $action . '?' . http_build_query($params, null, null, PHP_QUERY_RFC3986);
+ $onerror_path = 'events/' . $action . '?' . http_build_query($params, '', '&', PHP_QUERY_RFC3986);
if (strcmp($finish, $start) < 0 && !$nofinish) {
notice(DI::l10n()->t('Event can not end before it has started.'));
$contact = DBA::selectFirst('contact', [], $conditions);
if (!DBA::isResult($contact)) {
- Logger::warning('Contact not found', ['condition' => $conditions]);
+ Logger::warning('Contact not found', ['condition' => $conditions, 'cakkstack' => System::callstack(20)]);
}
// Existing event being modified.