mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
Merge branch 'develop' into reuse
This commit is contained in:
commit
ac6b17e34c
4 changed files with 104 additions and 49 deletions
|
@ -928,7 +928,7 @@ class Transmitter
|
||||||
*
|
*
|
||||||
* @param array $item
|
* @param array $item
|
||||||
* @param boolean $blindcopy
|
* @param boolean $blindcopy
|
||||||
* @return void
|
* @return array
|
||||||
*/
|
*/
|
||||||
public static function getReceiversForUriId(int $uri_id, bool $blindcopy): array
|
public static function getReceiversForUriId(int $uri_id, bool $blindcopy): array
|
||||||
{
|
{
|
||||||
|
|
|
@ -24,8 +24,10 @@ namespace Friendica\Worker;
|
||||||
use Friendica\Contact\Avatar;
|
use Friendica\Contact\Avatar;
|
||||||
use Friendica\Core\Logger;
|
use Friendica\Core\Logger;
|
||||||
use Friendica\Core\Protocol;
|
use Friendica\Core\Protocol;
|
||||||
|
use Friendica\Core\Worker;
|
||||||
use Friendica\Database\DBA;
|
use Friendica\Database\DBA;
|
||||||
use Friendica\Database\DBStructure;
|
use Friendica\Database\DBStructure;
|
||||||
|
use Friendica\DI;
|
||||||
use Friendica\Model\Contact;
|
use Friendica\Model\Contact;
|
||||||
use Friendica\Model\Photo;
|
use Friendica\Model\Photo;
|
||||||
use Friendica\Util\DateTimeFormat;
|
use Friendica\Util\DateTimeFormat;
|
||||||
|
@ -37,28 +39,53 @@ class RemoveUnusedContacts
|
||||||
{
|
{
|
||||||
public static function execute()
|
public static function execute()
|
||||||
{
|
{
|
||||||
$condition = ["`id` != ? AND `uid` = ? AND NOT `self` AND NOT `nurl` IN (SELECT `nurl` FROM `contact` WHERE `uid` != ?)
|
$loop = 0;
|
||||||
AND (NOT `network` IN (?, ?, ?, ?, ?, ?) OR (`archive` AND `success_update` < ?))
|
while (self::removeContacts(++$loop)) {
|
||||||
AND NOT `id` IN (SELECT `author-id` FROM `post-user` WHERE `author-id` = `contact`.`id`)
|
Logger::info('In removal', ['loop' => $loop]);
|
||||||
AND NOT `id` IN (SELECT `owner-id` FROM `post-user` WHERE `owner-id` = `contact`.`id`)
|
}
|
||||||
AND NOT `id` IN (SELECT `causer-id` FROM `post-user` WHERE `causer-id` IS NOT NULL AND `causer-id` = `contact`.`id`)
|
|
||||||
AND NOT `id` IN (SELECT `cid` FROM `post-tag` WHERE `cid` = `contact`.`id`)
|
|
||||||
AND NOT `id` IN (SELECT `contact-id` FROM `post-user` WHERE `contact-id` = `contact`.`id`)
|
|
||||||
AND NOT `id` IN (SELECT `cid` FROM `user-contact` WHERE `cid` = `contact`.`id`)
|
|
||||||
AND NOT `id` IN (SELECT `cid` FROM `event` WHERE `cid` = `contact`.`id`)
|
|
||||||
AND NOT `id` IN (SELECT `cid` FROM `group` WHERE `cid` = `contact`.`id`)
|
|
||||||
AND NOT `id` IN (SELECT `cid` FROM `delivery-queue` WHERE `cid` = `contact`.`id`)
|
|
||||||
AND NOT `id` IN (SELECT `author-id` FROM `mail` WHERE `author-id` = `contact`.`id`)
|
|
||||||
AND NOT `id` IN (SELECT `contact-id` FROM `mail` WHERE `contact-id` = `contact`.`id`)
|
|
||||||
AND NOT `id` IN (SELECT `contact-id` FROM `group_member` WHERE `contact-id` = `contact`.`id`)
|
|
||||||
AND `created` < ?",
|
|
||||||
0, 0, 0, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS, Protocol::FEED, Protocol::MAIL, Protocol::ACTIVITYPUB, DateTimeFormat::utc('now - 365 days'), DateTimeFormat::utc('now - 30 days')];
|
|
||||||
|
|
||||||
$total = DBA::count('contact', $condition);
|
Logger::notice('Remove apcontact entries with no related contact');
|
||||||
Logger::notice('Starting removal', ['total' => $total]);
|
DBA::delete('apcontact', ["`uri-id` NOT IN (SELECT `uri-id` FROM `contact`) AND `updated` < ?", DateTimeFormat::utc('now - 30 days')]);
|
||||||
|
Logger::notice('Removed apcontact entries with no related contact', ['count' => DBA::affectedRows()]);
|
||||||
|
|
||||||
|
Logger::notice('Remove diaspora-contact entries with no related contact');
|
||||||
|
DBA::delete('diaspora-contact', ["`uri-id` NOT IN (SELECT `uri-id` FROM `contact`) AND `updated` < ?", DateTimeFormat::utc('now - 30 days')]);
|
||||||
|
Logger::notice('Removed diaspora-contact entries with no related contact', ['count' => DBA::affectedRows()]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function removeContacts(int $loop): bool
|
||||||
|
{
|
||||||
|
Logger::notice('Starting removal', ['loop' => $loop]);
|
||||||
|
|
||||||
|
$condition = [
|
||||||
|
"`id` != ? AND `uid` = ? AND NOT `self` AND NOT `uri-id` IN (SELECT `uri-id` FROM `contact` WHERE `uid` != ?)
|
||||||
|
AND NOT EXISTS(SELECT `author-id` FROM `post-user` WHERE `author-id` = `contact`.`id`)
|
||||||
|
AND NOT EXISTS(SELECT `owner-id` FROM `post-user` WHERE `owner-id` = `contact`.`id`)
|
||||||
|
AND NOT EXISTS(SELECT `causer-id` FROM `post-user` WHERE `causer-id` IS NOT NULL AND `causer-id` = `contact`.`id`)
|
||||||
|
AND NOT EXISTS(SELECT `cid` FROM `post-tag` WHERE `cid` = `contact`.`id`)
|
||||||
|
AND NOT EXISTS(SELECT `contact-id` FROM `post-user` WHERE `contact-id` = `contact`.`id`)
|
||||||
|
AND NOT EXISTS(SELECT `cid` FROM `user-contact` WHERE `cid` = `contact`.`id`)
|
||||||
|
AND NOT EXISTS(SELECT `cid` FROM `event` WHERE `cid` = `contact`.`id`)
|
||||||
|
AND NOT EXISTS(SELECT `cid` FROM `group` WHERE `cid` = `contact`.`id`)
|
||||||
|
AND NOT EXISTS(SELECT `author-id` FROM `mail` WHERE `author-id` = `contact`.`id`)
|
||||||
|
AND NOT EXISTS(SELECT `contact-id` FROM `mail` WHERE `contact-id` = `contact`.`id`)
|
||||||
|
AND NOT EXISTS(SELECT `contact-id` FROM `group_member` WHERE `contact-id` = `contact`.`id`)
|
||||||
|
AND `created` < ?", 0, 0, 0, DateTimeFormat::utc('now - 7 days')
|
||||||
|
];
|
||||||
|
|
||||||
|
if (!DI::config()->get('remove_all_unused_contacts')) {
|
||||||
|
$condition2 = [
|
||||||
|
"(NOT `network` IN (?, ?, ?, ?, ?, ?) OR `archive`)",
|
||||||
|
Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS, Protocol::FEED, Protocol::MAIL, Protocol::ACTIVITYPUB
|
||||||
|
];
|
||||||
|
|
||||||
|
$condition = DBA::mergeConditions($condition2, $condition);
|
||||||
|
}
|
||||||
|
|
||||||
|
$contacts = DBA::select('contact', ['id', 'uid', 'photo', 'thumb', 'micro'], $condition, ['limit' => 1000]);
|
||||||
$count = 0;
|
$count = 0;
|
||||||
$contacts = DBA::select('contact', ['id', 'uid', 'photo', 'thumb', 'micro'], $condition);
|
|
||||||
while ($contact = DBA::fetch($contacts)) {
|
while ($contact = DBA::fetch($contacts)) {
|
||||||
|
++$count;
|
||||||
Photo::delete(['uid' => $contact['uid'], 'contact-id' => $contact['id']]);
|
Photo::delete(['uid' => $contact['uid'], 'contact-id' => $contact['id']]);
|
||||||
Avatar::deleteCache($contact);
|
Avatar::deleteCache($contact);
|
||||||
|
|
||||||
|
@ -87,19 +114,9 @@ class RemoveUnusedContacts
|
||||||
DBA::delete('post-thread-user', ['causer-id' => $contact['id']]);
|
DBA::delete('post-thread-user', ['causer-id' => $contact['id']]);
|
||||||
|
|
||||||
Contact::deleteById($contact['id']);
|
Contact::deleteById($contact['id']);
|
||||||
if ((++$count % 1000) == 0) {
|
|
||||||
Logger::info('In removal', ['count' => $count, 'total' => $total]);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
DBA::close($contacts);
|
DBA::close($contacts);
|
||||||
Logger::notice('Removal done', ['count' => $count, 'total' => $total]);
|
Logger::notice('Removal done', ['count' => $count]);
|
||||||
|
return ($count == 1000 && Worker::isInMaintenanceWindow());
|
||||||
Logger::notice('Remove apcontact entries with no related contact');
|
|
||||||
DBA::delete('apcontact', ["`uri-id` NOT IN (SELECT `uri-id` FROM `contact`) AND `updated` < ?", DateTimeFormat::utc('now - 30 days')]);
|
|
||||||
Logger::notice('Removed apcontact entries with no related contact', ['count' => DBA::affectedRows()]);
|
|
||||||
|
|
||||||
Logger::notice('Remove diaspora-contact entries with no related contact');
|
|
||||||
DBA::delete('diaspora-contact', ["`uri-id` NOT IN (SELECT `uri-id` FROM `contact`) AND `updated` < ?", DateTimeFormat::utc('now - 30 days')]);
|
|
||||||
Logger::notice('Removed diaspora-contact entries with no related contact', ['count' => DBA::affectedRows()]);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -514,6 +514,12 @@ return [
|
||||||
// Redistribute incoming activities via ActivityPub
|
// Redistribute incoming activities via ActivityPub
|
||||||
'redistribute_activities' => true,
|
'redistribute_activities' => true,
|
||||||
|
|
||||||
|
// remove_all_unused_contacts (Boolean)
|
||||||
|
// Remove all unused contacts.
|
||||||
|
// Per default only archived contacts are removed from federated services.
|
||||||
|
// Unused contacts from connector networks will be removed in any case.
|
||||||
|
'remove_all_unused_contacts' => false,
|
||||||
|
|
||||||
// session_handler (database|cache|native)
|
// session_handler (database|cache|native)
|
||||||
// Whether to use Cache to store session data or to use PHP native session storage.
|
// Whether to use Cache to store session data or to use PHP native session storage.
|
||||||
'session_handler' => 'database',
|
'session_handler' => 'database',
|
||||||
|
|
|
@ -21,53 +21,56 @@
|
||||||
|
|
||||||
<p class="comment-edit-bb-{{$id}} comment-icon-list">
|
<p class="comment-edit-bb-{{$id}} comment-icon-list">
|
||||||
<span>
|
<span>
|
||||||
<button type="button" class="btn btn-sm template-icon bb-img" aria-label="{{$l10n.edimg}}" title="{{$l10n.edimg}}" data-role="insert-formatting" data-bbcode="img" data-id="{{$id}}" tabindex="7">
|
<button type="button" class="btn btn-sm template-icon bb-img" aria-label="{{$l10n.edimg}}" title="{{$l10n.edimg}}" data-role="insert-formatting" data-bbcode="img" data-id="{{$id}}" tabindex="6">
|
||||||
<i class="fa fa-picture-o"></i>
|
<i class="fa fa-picture-o"></i>
|
||||||
</button>
|
</button>
|
||||||
<button type="button" class="btn btn-sm template-icon bb-attach" aria-label="{{$l10n.edattach}}" title="{{$l10n.edattach}}" ondragenter="return commentLinkDrop(event, {{$id}});" ondragover="return commentLinkDrop(event, {{$id}});" ondrop="commentLinkDropper(event);" onclick="commentGetLink({{$id}}, '{{$l10n.prompttext}}');" tabindex="8">
|
<button type="button" class="btn btn-sm template-icon bb-attach" aria-label="{{$l10n.edattach}}" title="{{$l10n.edattach}}" ondragenter="return commentLinkDrop(event, {{$id}});" ondragover="return commentLinkDrop(event, {{$id}});" ondrop="commentLinkDropper(event);" onclick="commentGetLink({{$id}}, '{{$l10n.prompttext}}');" tabindex="7">
|
||||||
<i class="fa fa-paperclip"></i>
|
<i class="fa fa-paperclip"></i>
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
<span>
|
<span>
|
||||||
<button type="button" class="btn btn-sm template-icon bb-url" aria-label="{{$l10n.edurl}}" title="{{$l10n.edurl}}" onclick="insertFormatting('url',{{$id}});" tabindex="9">
|
<button type="button" class="btn btn-sm template-icon bb-url" aria-label="{{$l10n.edurl}}" title="{{$l10n.edurl}}" onclick="insertFormatting('url',{{$id}});" tabindex="8">
|
||||||
<i class="fa fa-link"></i>
|
<i class="fa fa-link"></i>
|
||||||
</button>
|
</button>
|
||||||
<button type="button" class="btn btn-sm template-icon underline" aria-label="{{$l10n.eduline}}" title="{{$l10n.eduline}}" onclick="insertFormatting('u',{{$id}});" tabindex="10">
|
<button type="button" class="btn btn-sm template-icon underline" aria-label="{{$l10n.eduline}}" title="{{$l10n.eduline}}" onclick="insertFormatting('u',{{$id}});" tabindex="9">
|
||||||
<i class="fa fa-underline"></i>
|
<i class="fa fa-underline"></i>
|
||||||
</button>
|
</button>
|
||||||
<button type="button" class="btn btn-sm template-icon italic" aria-label="{{$l10n.editalic}}" title="{{$l10n.editalic}}" onclick="insertFormatting('i',{{$id}});" tabindex="11">
|
<button type="button" class="btn btn-sm template-icon italic" aria-label="{{$l10n.editalic}}" title="{{$l10n.editalic}}" onclick="insertFormatting('i',{{$id}});" tabindex="10">
|
||||||
<i class="fa fa-italic"></i>
|
<i class="fa fa-italic"></i>
|
||||||
</button>
|
</button>
|
||||||
<button type="button" class="btn btn-sm template-icon bold" aria-label="{{$l10n.edbold}}" title="{{$l10n.edbold}}" onclick="insertFormatting('b',{{$id}});" tabindex="12">
|
<button type="button" class="btn btn-sm template-icon bold" aria-label="{{$l10n.edbold}}" title="{{$l10n.edbold}}" onclick="insertFormatting('b',{{$id}});" tabindex="11">
|
||||||
<i class="fa fa-bold"></i>
|
<i class="fa fa-bold"></i>
|
||||||
</button>
|
</button>
|
||||||
<button type="button" class="btn btn-sm template-icon quote" aria-label="{{$l10n.edquote}}" title="{{$l10n.edquote}}" onclick="insertFormatting('quote',{{$id}});" tabindex="13">
|
<button type="button" class="btn btn-sm template-icon quote" aria-label="{{$l10n.edquote}}" title="{{$l10n.edquote}}" onclick="insertFormatting('quote',{{$id}});" tabindex="12">
|
||||||
<i class="fa fa-quote-left"></i>
|
<i class="fa fa-quote-left"></i>
|
||||||
</button>
|
</button>
|
||||||
<button id="button_emojipicker" type="button" class="btn btn-sm template-icon emojis" aria-label="{{$l10n.edemojis}}" title="{{$l10n.edemojis}}" tabindex="14">
|
<button id="button_emojipicker" type="button" class="btn btn-sm template-icon emojis" aria-label="{{$l10n.edemojis}}" title="{{$l10n.edemojis}}" tabindex="13">
|
||||||
<i class="fa fa-smile-o"></i>
|
<i class="fa fa-smile-o"></i>
|
||||||
</button>
|
</button>
|
||||||
<button type="button" class="btn btn-sm template-icon bb-url" aria-label="{{$l10n.contentwarn}}" title="{{$l10n.contentwarn}}" onclick="insertFormatting('abstract',{{$id}});" tabindex="9">
|
<button type="button" class="btn btn-sm template-icon bb-url" aria-label="{{$l10n.contentwarn}}" title="{{$l10n.contentwarn}}" onclick="insertFormatting('abstract',{{$id}});" tabindex="14">
|
||||||
<i class="fa fa-eye"></i>
|
<i class="fa fa-eye"></i>
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
</p>
|
</p>
|
||||||
<div id="dropzone-{{$id}}" class="dropzone" style="overflow:scroll">
|
<div id="dropzone-{{$id}}" class="dropzone" style="overflow:scroll">
|
||||||
<p>
|
<p>
|
||||||
<textarea id="comment-edit-text-{{$id}}" class="comment-edit-text form-control text-autosize expandable-textarea" name="body" placeholder="{{$l10n.default}}" rows="7" tabindex="3" dir="auto" dir="auto" onkeydown="sendOnCtrlEnter(event, 'comment-edit-submit-{{$id}}')">{{$body}}</textarea>
|
<textarea id="comment-edit-text-{{$id}}" class="comment-edit-text form-control text-autosize expandable-textarea" name="body" placeholder="{{$l10n.default}}" rows="18" tabindex="3" dir="auto" onkeydown="sendOnCtrlEnter(event, 'comment-edit-submit-{{$id}}')">{{$body}}</textarea>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<p class="comment-edit-submit-wrapper">
|
<p class="comment-edit-submit-wrapper">
|
||||||
{{if $type == 'post'}}
|
{{if $type == 'post'}}
|
||||||
<span role="presentation" class="form-inline">
|
<span role="presentation" class="form-inline">
|
||||||
<input type="text" name="location" class="form-control" id="jot-location" value="{{$location}}" placeholder="{{$l10n.location_set}}"/>
|
<button type="button" name="permissions" class="btn btn-sm template-icon" id="toggle-permissions" title="{{$l10n.toggle_permissions_tooltip}}" onclick="togglePermissions()" style="margin-right: 10px;" tabindex="5">
|
||||||
<button type="button" class="btn btn-sm template-icon" id="profile-location"
|
<i class="fa fa-ellipsis-h"></i> {{$l10n.toggle_permissions}}
|
||||||
|
</button>
|
||||||
|
<input type="text" name="location" class="form-control" id="jot-location" value="{{$location}}" placeholder="{{$l10n.location_set}}" tabindex="6"/>
|
||||||
|
<button type="button" class="btn btn-sm template-icon" id="profile-location"
|
||||||
data-title-set="{{$l10n.location_set}}"
|
data-title-set="{{$l10n.location_set}}"
|
||||||
data-title-disabled="{{$l10n.location_disabled}}"
|
data-title-disabled="{{$l10n.location_disabled}}"
|
||||||
data-title-unavailable="{{$l10n.location_unavailable}}"
|
data-title-unavailable="{{$l10n.location_unavailable}}"
|
||||||
data-title-clear="{{$l10n.location_clear}}"
|
data-title-clear="{{$l10n.location_clear}}"
|
||||||
title="{{$l10n.location_set}}"
|
title="{{$l10n.location_set}}"
|
||||||
tabindex="6">
|
tabindex="7">
|
||||||
<i class="fa fa-map-marker" aria-hidden="true"></i>
|
<i class="fa fa-map-marker" aria-hidden="true"></i>
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
|
@ -76,12 +79,13 @@
|
||||||
<img role="presentation" id="profile-rotator" src="images/rotator.gif" alt="{{$l10n.wait}}" title="{{$l10n.wait}}" style="display: none;" />
|
<img role="presentation" id="profile-rotator" src="images/rotator.gif" alt="{{$l10n.wait}}" title="{{$l10n.wait}}" style="display: none;" />
|
||||||
</span>
|
</span>
|
||||||
<span role="presentation" id="character-counter" class="grey text-info"></span>
|
<span role="presentation" id="character-counter" class="grey text-info"></span>
|
||||||
<button type="button" class="btn btn-default" onclick="preview_comment({{$id}});" id="comment-edit-preview-link-{{$id}}" tabindex="5"><i class="fa fa-eye"></i> {{$l10n.preview}}</button>
|
<button type="button" class="btn btn-default" onclick="preview_comment({{$id}});" id="comment-edit-preview-link-{{$id}}" tabindex="8"><i class="fa fa-eye"></i> {{$l10n.preview}}</button>
|
||||||
<button type="submit" class="btn btn-primary" id="comment-edit-submit-{{$id}}" name="submit" tabindex="4"><i class="fa fa-envelope"></i> {{$l10n.submit}}</button>
|
<button type="submit" class="btn btn-primary" id="comment-edit-submit-{{$id}}" name="submit" tabindex="9"><i class="fa fa-envelope"></i> {{$l10n.submit}}</button>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<div id="comment-edit-preview-{{$id}}" class="comment-edit-preview" style="display:none;"></div>
|
<div id="comment-edit-preview-{{$id}}" class="comment-edit-preview" style="display:none;"></div>
|
||||||
|
|
||||||
|
<div id="permissions-section" style="display: none;">
|
||||||
{{if $type == 'post'}}
|
{{if $type == 'post'}}
|
||||||
<h3>{{$l10n.visibility_title}}</h3>
|
<h3>{{$l10n.visibility_title}}</h3>
|
||||||
{{$acl_selector nofilter}}
|
{{$acl_selector nofilter}}
|
||||||
|
@ -98,8 +102,9 @@
|
||||||
<input type="hidden" name="circle_deny" value="{{$circle_deny}}"/>
|
<input type="hidden" name="circle_deny" value="{{$circle_deny}}"/>
|
||||||
<input type="hidden" name="contact_deny" value="{{$contact_deny}}"/>
|
<input type="hidden" name="contact_deny" value="{{$contact_deny}}"/>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</form>
|
</div>
|
||||||
</div>
|
</form>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script>
|
<script>
|
||||||
dzFactory.setupDropzone('#dropzone-{{$id}}', 'comment-edit-text-{{$id}}');
|
dzFactory.setupDropzone('#dropzone-{{$id}}', 'comment-edit-text-{{$id}}');
|
||||||
|
@ -118,4 +123,31 @@
|
||||||
textarea.style.height = (textarea.scrollHeight) + "px";
|
textarea.style.height = (textarea.scrollHeight) + "px";
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function togglePermissions() {
|
||||||
|
var permissionsSection = document.getElementById('permissions-section');
|
||||||
|
if (permissionsSection.style.display === 'none' || permissionsSection.style.display === '') {
|
||||||
|
permissionsSection.style.display = 'block';
|
||||||
|
} else {
|
||||||
|
permissionsSection.style.display = 'none';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Warn the user before leaving the page
|
||||||
|
var formSubmitting = false;
|
||||||
|
|
||||||
|
function setFormSubmitting() {
|
||||||
|
formSubmitting = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
window.addEventListener("beforeunload", function (event) {
|
||||||
|
if (!formSubmitting) {
|
||||||
|
var confirmationMessage = 'Are you sure you want to reload the page? All unsaved changes will be lost.';
|
||||||
|
event.returnValue = confirmationMessage;
|
||||||
|
return confirmationMessage;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Set the formSubmitting flag when the form is submitted
|
||||||
|
document.getElementById('comment-edit-form-{{$id}}').addEventListener('submit', setFormSubmitting);
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in a new issue