From cc45ac14b5ec2e37ef9d021642a4916877c8bacf Mon Sep 17 00:00:00 2001 From: Friendika Date: Wed, 6 Apr 2011 21:59:07 -0700 Subject: [PATCH] attachment storage --- include/items.php | 1 + 1 file changed, 1 insertion(+) diff --git a/include/items.php b/include/items.php index c617f13cbd..5969466813 100644 --- a/include/items.php +++ b/include/items.php @@ -653,6 +653,7 @@ function item_store($arr,$force_parent = false) { $arr['private'] = ((x($arr,'private')) ? intval($arr['private']) : 0 ); $arr['body'] = ((x($arr,'body')) ? trim($arr['body']) : ''); $arr['tag'] = ((x($arr,'tag')) ? notags(trim($arr['tag'])) : ''); + $arr['attach'] = ((x($arr,'attach')) ? notags(trim($arr['attach'])) : ''); if($arr['parent-uri'] === $arr['uri']) { $parent_id = 0;