mirror of
https://github.com/moodle/moodle.git
synced 2025-02-13 20:36:42 +01:00
31 lines
754 B
PHP
31 lines
754 B
PHP
|
<?php
|
||
|
/**
|
||
|
* This script is called through AJAX. It confirms that a user is still
|
||
|
* trying to edit a page that they have locked (they haven't closed
|
||
|
* their browser window or something).
|
||
|
*
|
||
|
* @copyright © 2006 The Open University
|
||
|
* @author s.marshall@open.ac.uk
|
||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
|
||
|
* @package wiki
|
||
|
*//** */
|
||
|
|
||
|
require_once("../../config.php");
|
||
|
|
||
|
header('Content-Type: text/plain');
|
||
|
|
||
|
if(empty($_POST['lockid'])) {
|
||
|
print 'noid';
|
||
|
exit;
|
||
|
}
|
||
|
|
||
|
$lockid=(int)$_POST['lockid'];
|
||
|
if($lock=get_record('wiki_locks','id',$lockid)) {
|
||
|
$lock->lockedseen=time();
|
||
|
update_record('wiki_locks',$lock);
|
||
|
print 'ok';
|
||
|
} else {
|
||
|
print 'cancel'; // Tells user their lock has been cancelled.
|
||
|
}
|
||
|
|
||
|
?>
|