diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-01-11 08:46:13 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-01-11 08:46:13 +0100 |
commit | 61e019e176f6d66f2ebdd0db4555fb727a7958ff (patch) | |
tree | a61bda7937e73cf7f8649fa0be62f9e9097704ad /include/socgraph.php | |
parent | 46cc360e4e099d0ef91e06833525796f42f1343b (diff) | |
parent | 894b3706e7e10fbcd158f4022f68ed23c1c7defa (diff) | |
download | volse-hubzilla-61e019e176f6d66f2ebdd0db4555fb727a7958ff.tar.gz volse-hubzilla-61e019e176f6d66f2ebdd0db4555fb727a7958ff.tar.bz2 volse-hubzilla-61e019e176f6d66f2ebdd0db4555fb727a7958ff.zip |
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'include/socgraph.php')
-rw-r--r-- | include/socgraph.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/socgraph.php b/include/socgraph.php index 26446d9c7..87a880202 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -178,11 +178,12 @@ function poco_load($xchan = '', $url = null) { ); if(! $r) { - q("insert into xlink ( xlink_xchan, xlink_link, xlink_rating, xlink_rating_text, xlink_updated, xlink_static ) values ( '%s', '%s', %d, '%s', '%s', 0 ) ", + q("insert into xlink ( xlink_xchan, xlink_link, xlink_rating, xlink_rating_text, xlink_sig, xlink_updated, xlink_static ) values ( '%s', '%s', %d, '%s', '%s', '%s', 0 ) ", dbesc($xchan), dbesc($hash), intval(0), dbesc(''), + dbesc(''), dbesc(datetime_convert()) ); } |