]> git.mxchange.org Git - friendica.git/commitdiff
Bugfix: There was a SQL error when trying to deliver friendica posts because of a...
authorMichael Vogel <icarus@dabo.de>
Sat, 15 Nov 2014 18:21:54 +0000 (19:21 +0100)
committerMichael Vogel <icarus@dabo.de>
Sat, 15 Nov 2014 18:21:54 +0000 (19:21 +0100)
mod/dfrn_notify.php

index 2aa654534621dbb186a5dd6b61db1068397ae212..43414dc87c5bf8e350c972c323fd82c0b01be747 100644 (file)
@@ -193,7 +193,7 @@ function dfrn_notify_content(&$a) {
                $r = q("DELETE FROM `challenge` WHERE `expire` < " . intval(time()));
 
                $r = q("INSERT INTO `challenge` ( `challenge`, `dfrn-id`, `expire` , `type`, `last_update` )
-                       VALUES( '%s', '%s', %d ) ",
+                       VALUES( '%s', '%s', %d, '%s', '%s' ) ",
                        dbesc($hash),
                        dbesc($dfrn_id),
                        intval(time() + 90 ),