fix(ajax): fix #1169, fix #1172

This commit is contained in:
mrilyew 2024-12-08 11:45:19 +03:00
parent efa3e1213c
commit 35bfe97360
3 changed files with 12 additions and 2 deletions

View file

@ -132,7 +132,7 @@
{/if}
<a style="width: 194px;" n:if="OPENVK_ROOT_CONF['openvk']['preferences']['commerce'] && $user->getGiftCount() == 0" href="/gifts?act=pick&user={$user->getId()}" class="profile_link">{_send_gift}</a>
<a style="width: 194px;" n:if="$user->getPrivacyPermission('messages.write', $thisUser)" href="/im?sel={$user->getId()}" class="profile_link">{_send_message}</a>
<a style="width: 194px;" n:if="$user->getPrivacyPermission('messages.write', $thisUser)" href="/im?sel={$user->getId()}" class="profile_link" rel="nofollow">{_send_message}</a>
{var $subStatus = $user->getSubscriptionStatus($thisUser)}
{if $subStatus === 0}

View file

@ -152,7 +152,7 @@ window.router = new class {
return false
}
if(!url || url == '' || url == '/') {
if(!url || url == '') {
return false
}
@ -275,6 +275,11 @@ u(document).on('click', 'a', async (e) => {
return
}
// temporary fix
if(dom_url == '/') {
url = url + 'id0'
}
e.preventDefault()
console.log(`AJAX | Going to URL ${url}`)

View file

@ -229,6 +229,11 @@ function serializeForm(form, submitter = null)
}
}
break
case 'radio':
if(inp.checked) {
fd.append(inp.name, inp.value)
}
break
}
})