X-Git-Url: http://git.harvie.cz/?a=blobdiff_plain;f=assistants%2Flock.inc.php;h=ccb9302214020fa406e777da7790f115544dcc39;hb=af6ae18de08fdcbbe6a371f6ccd78ecaf6af6001;hp=c042ee9bbcdea8f4cde356f5c7393e155fb8ceb0;hpb=37595945b02d6e45cfe1d524245a983615383944;p=mirrors%2FSokoMan.git diff --git a/assistants/lock.inc.php b/assistants/lock.inc.php index c042ee9..ccb9302 100644 --- a/assistants/lock.inc.php +++ b/assistants/lock.inc.php @@ -4,10 +4,8 @@ switch($SUBPATH[0]) { $result = $this->db->safe_query_fetch("SELECT * FROM `lock`;"); if(empty($result)) { echo 'Not locked...'; - $user=$this->db->auth->get_user_id(); - $username=$this->db->auth->get_username_by_id($user); echo $this->html->form("$URL/2", 'POST', array( - array('reason',$username,'textarea',false,'autofocus','reason:'), + array('reason','','textarea',false,'autofocus','reason:'), array('lock','lock','submit') )); } else { @@ -20,7 +18,9 @@ switch($SUBPATH[0]) { break; case 2: if(isset($_POST['lock'])) { - $lock = $this->db->quote($_POST['reason']); + $user=$this->db->auth->get_user_id(); + $username=$this->db->auth->get_username_by_id($user); + $lock = $this->db->quote($username.': '.$_POST['reason']); $this->db->safe_query("INSERT INTO `lock` (lock_name) VALUES ($lock);"); $this->post_redirect_get("$URL_INTERNAL/1", T('Lock set')); }