aboutsummaryrefslogtreecommitdiffstats
path: root/include/socgraph.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-01-10 15:42:02 -0800
committerzotlabs <mike@macgirvin.com>2018-01-10 15:42:02 -0800
commitb05c1c391cf9b73e58b60fb0ef8d5b4ca702eac3 (patch)
treec3037dc85c86db94dbb9a761ff0b704688aed38a /include/socgraph.php
parentc09bab466a989a606fd1940a667eb95b90fabe09 (diff)
downloadvolse-hubzilla-b05c1c391cf9b73e58b60fb0ef8d5b4ca702eac3.tar.gz
volse-hubzilla-b05c1c391cf9b73e58b60fb0ef8d5b4ca702eac3.tar.bz2
volse-hubzilla-b05c1c391cf9b73e58b60fb0ef8d5b4ca702eac3.zip
db issue reported in hubzilla #953 - this does not do anything about the auth issue
Diffstat (limited to 'include/socgraph.php')
-rw-r--r--include/socgraph.php3
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())
);
}