27 lines
754 B
PHP
27 lines
754 B
PHP
<?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;
|
|
|
|
?>
|