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:
parent
0a46ad1a27
commit
19ba54b806
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ $obj = AVideoPlugin::getObjectData("AuthorizeNet");
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
function startAuthorizeNetAcceptHosted(plans_id) {
|
function startAuthorizeNetAcceptHosted(plans_id) {
|
||||||
if(plans_id === 0){
|
if(plans_id == 0){
|
||||||
plans_id = '';
|
plans_id = '';
|
||||||
}
|
}
|
||||||
const amount = $('#value' + plans_id).val();
|
const amount = $('#value' + plans_id).val();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue