webui fixes

This commit is contained in:
SJ
2013-04-06 11:32:17 +02:00
parent fa61d445f2
commit 96b2fce306
5 changed files with 7 additions and 7 deletions

View File

@ -20,7 +20,7 @@ class ControllerMessageNote extends Controller {
if(isset($this->request->post['note']) && isset($this->request->post['id'])) {
if($this->model_search_search->check_your_permission_by_id($this->request->post['id']) == 1) {
$this->model_search_message->add_message_note($this->request->post['id'], $_SESSION['uid'], $this->request->post['note']);
$this->model_search_message->add_message_note($this->request->post['id'], $_SESSION['uid'], urldecode($this->request->post['note']));
}
}
}