fix some issues that showed up in the logs.

This commit is contained in:
friendica
2013-07-15 18:07:23 -07:00
parent f384695e3d
commit 3bd7c1af23
2 changed files with 16 additions and 8 deletions
+7
View File
@@ -1306,6 +1306,13 @@ function item_store($arr,$force_parent = false) {
return 0;
}
// Don't let anybody set these, either intentionally or accidentally
if(array_key_exists('id',$arr))
unset($arr['id']);
if(array_key_exists('parent',$arr))
unset($arr['parent']);
$arr['lang'] = detect_language($arr['body']);
$allowed_languages = get_pconfig($arr['uid'],'system','allowed_languages');