mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-06-12 23:17:02 +02:00
webui fixes
This commit is contained in:
@ -521,8 +521,8 @@ class ModelSearchSearch extends Model {
|
||||
if(isset($tag[$m['id']])) { $m['tag'] = $tag[$m['id']]; } else { $m['tag'] = ''; }
|
||||
if(isset($note[$m['id']])) { $m['note'] = $note[$m['id']]; } else { $m['note'] = ''; }
|
||||
|
||||
$m['note'] = strip_tags(urldecode($m['note']));
|
||||
$m['tag'] = strip_tags(urldecode($m['tag']));
|
||||
$m['note'] = preg_replace("/\"/", "*", strip_tags($m['note']));
|
||||
$m['tag'] = preg_replace("/\"/", "*", strip_tags($m['tag']));
|
||||
|
||||
array_push($messages, $m);
|
||||
}
|
||||
|
Reference in New Issue
Block a user