call money_check from deposit menu

This commit is contained in:
Tóth Richárd
2019-08-29 17:50:52 +02:00
parent dccd23f1a1
commit bf40ea35f9
5 changed files with 33 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
<h3>Frissítés folyamatban...</h3>
<script type="text/javascript">
$(document).ready(function() {
$.ajax({
url: '/_cron/money_check.php',
success: function(data, status, jqXHR) {
setTimeout(function() {
window.location.replace("/admin/money_deposit");
}, 4000);
}
});
});
</script>