Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Neto committed Aug 12, 2024
1 parent 6861665 commit 1e90759
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions view/index_signin.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function saveYPT(provider, name, parameters) {
console.log('saveYPT', provider, name, parameters);
yptPopupOpened = 0;
$.ajax({
url: '<?php echo $global['webSiteRootURL']; ?>view/index_signin.save.json.php',
url: '<?php echo $global['webSiteRootURL']; ?>view/index_signin.save.json.php?PHPSESSID=<?php echo session_id(); ?>',
type: "POST",
data: {
provider: provider,
Expand All @@ -109,7 +109,7 @@ function saveYPT(provider, name, parameters) {
$(document).ready(function() {
Publisher_user_preferencestableVar = $('#Publisher_user_preferencesTable').DataTable({
serverSide: true,
"ajax": "<?php echo $global['webSiteRootURL']; ?>view/index_signin.json.php",
"ajax": "<?php echo $global['webSiteRootURL']; ?>view/index_signin.json.php?PHPSESSID=<?php echo session_id(); ?>",
"columns": [{
"data": "profile"
},
Expand Down Expand Up @@ -157,7 +157,7 @@ function saveYPT(provider, name, parameters) {
modal.showPleaseWait();
$.ajax({
type: "POST",
url: '<?php echo $global['webSiteRootURL']; ?>view/index_signin.delete.json.php',
url: '<?php echo $global['webSiteRootURL']; ?>view/index_signin.delete.json.php?PHPSESSID=<?php echo session_id(); ?>',
data: data

}).done(function(resposta) {
Expand All @@ -184,7 +184,7 @@ function saveYPT(provider, name, parameters) {
modal.showPleaseWait();
$.ajax({
type: "POST",
url: '<?php echo $global['webSiteRootURL']; ?>view/index_signin.revalidate.json.php',
url: '<?php echo $global['webSiteRootURL']; ?>view/index_signin.revalidate.json.php?PHPSESSID=<?php echo session_id(); ?>',
data: data
}).done(function(resposta) {
if (resposta.error) {
Expand Down

0 comments on commit 1e90759

Please sign in to comment.