moodle/mod/wiki/confirmlock.php

32 lines
775 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 &copy; 2006 The Open University
* @author s.marshall@open.ac.uk
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
* @package mod-wiki
* @category mod
*//** */
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.
}
?>