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

26
html/jobs/job_unlock.php Normal file
View File

@@ -0,0 +1,26 @@
<?php
/*=======================================================================
*
* job_unlock.php
*
* Autor: Carsten Annacker
*
=======================================================================*/
//require_once("../PEAR/HTML/Template/IT.php");
include_once("../include/global.inc.php");
list ($jb_id) = getHttpVars(array("jb_id"));
updateStmt("job", "jb_id", $jb_id, array("jb_locktime", NULL, "jb_lockuser", NULL));
//$tpl = new HTML_Template_IT();
//$tpl->loadTemplatefile("job_tour_list.htm", true, true);
////$tpl->setCurrentBlock("javascript");
////$tpl->setVariable("_auto_refresh_", MASK_AUTO_REFRESH);
////$tpl->parseCurrentBlock("javascript");
//$tpl->show();
$output = file_get_contents("job_tour_list.htm");
echo $output;
?>