1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00

Fix strict comparison in startAuthorizeNetAcceptHosted function

This commit is contained in:
Daniel Neto 2025-09-08 15:28:23 -03:00
parent 0a46ad1a27
commit 19ba54b806

View file

@ -19,7 +19,7 @@ $obj = AVideoPlugin::getObjectData("AuthorizeNet");
<script>
function startAuthorizeNetAcceptHosted(plans_id) {
if(plans_id === 0){
if(plans_id == 0){
plans_id = '';
}
const amount = $('#value' + plans_id).val();