diff options
Diffstat (limited to 'mod/blog')
| -rw-r--r-- | mod/blog/actions/blog/auto_save_revision.php | 2 | ||||
| -rw-r--r-- | mod/blog/actions/blog/save.php | 6 | 
2 files changed, 6 insertions, 2 deletions
diff --git a/mod/blog/actions/blog/auto_save_revision.php b/mod/blog/actions/blog/auto_save_revision.php index 66b65c5fd..e33edfaab 100644 --- a/mod/blog/actions/blog/auto_save_revision.php +++ b/mod/blog/actions/blog/auto_save_revision.php @@ -7,7 +7,7 @@  $guid = get_input('guid');  $user = elgg_get_logged_in_user_entity(); -$title = get_input('title'); +$title = htmlspecialchars(get_input('title', '', false), ENT_QUOTES, 'UTF-8');  $description = get_input('description');  $excerpt = get_input('excerpt'); diff --git a/mod/blog/actions/blog/save.php b/mod/blog/actions/blog/save.php index 048bc00be..070c96398 100644 --- a/mod/blog/actions/blog/save.php +++ b/mod/blog/actions/blog/save.php @@ -57,7 +57,11 @@ $required = array('title', 'description');  // load from POST and do sanity and access checking  foreach ($values as $name => $default) { -	$value = get_input($name, $default); +	if ($name === 'title') { +		$value = htmlspecialchars(get_input('title', $default, false), ENT_QUOTES, 'UTF-8'); +	} else { +		$value = get_input($name, $default); +	}  	if (in_array($name, $required) && empty($value)) {  		$error = elgg_echo("blog:error:missing:$name");  | 
