nearly ready for the output template

This commit is contained in:
friendica
2013-07-03 22:51:49 -07:00
parent fbdee83dca
commit 6f390330ff
2 changed files with 24 additions and 2 deletions
+3 -2
View File
@@ -99,11 +99,12 @@ function thing_init(&$a) {
}
$term = $r[0];
$r = q("insert into obj ( obj_page, obj_verb, obj_type, obj_channel) values ('%s','%s', %d,%d) ",
$r = q("insert into obj ( obj_page, obj_verb, obj_type, obj_channel, obj_obj) values ('%s','%s', %d, %d, '%s') ",
dbesc($profile),
dbesc($verb),
intval(TERM_OBJ_THING),
intval(local_user())
intval(local_user()),
dbesc($term['term_hash'])
);
if(! $r) {