1. Import

This commit is contained in:
2026-03-29 10:34:57 +02:00
parent b0e00c1259
commit a1129565af
4899 changed files with 3007593 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<?php
/*=======================================================================
*
* ajaxReqJobUnlock.php
*
* Autor: Carsten Annacker
*
=======================================================================*/
include_once("../include/global.inc.php");
getSecHttpVars("1", array("jb_id"));
$fileHandle = @fopen("../log/ajaxReqJobUnlock_" . date("Ym") . ".log", 'a');
@fwrite($fileHandle, "[" . date("Y-m-d H:i:s") . "] \$jb_id = " . $jb_id . "\n");
updateStmt("job", "jb_id", $jb_id, array("jb_locktime", NULL, "jb_lockuser", NULL));
@fwrite($fileHandle, "[" . date("Y-m-d H:i:s") . "] ... unlocked\n");
@fclose($fileHandle);
?>