about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--central/trunk/instadisc.php8
-rw-r--r--central/trunk/xmlrpc.php2
2 files changed, 8 insertions, 2 deletions
diff --git a/central/trunk/instadisc.php b/central/trunk/instadisc.php index 5da1d54..421f058 100644 --- a/central/trunk/instadisc.php +++ b/central/trunk/instadisc.php
@@ -70,6 +70,12 @@ function instaDisc_sendItem($username, $id)
70 $out .= 'Title: ' . $getitem3['title'] . "\r\n"; 70 $out .= 'Title: ' . $getitem3['title'] . "\r\n";
71 $out .= 'Author: ' . $getitem3['author'] . "\r\n"; 71 $out .= 'Author: ' . $getitem3['author'] . "\r\n";
72 $out .= 'URL: ' . $getitem3['url'] . "\r\n"; 72 $out .= 'URL: ' . $getitem3['url'] . "\r\n";
73
74 foreach (deserialize($getitem3['semantics']) as $name => $value)
75 {
76 $out .= $name . ': ' . $value . "\r\n";
77 }
78
73 $out .= "\r\n\r\n"; 79 $out .= "\r\n\r\n";
74 80
75 fwrite($fp, $out); 81 fwrite($fp, $out);
@@ -128,7 +134,7 @@ function instaDisc_addItem($username, $subscription, $title, $author, $url, $sem
128 $setuser = "UPDATE users SET nextItemID = nextItemID+1 WHERE username = \"" . mysql_real_escape_string($username) . "\""; 134 $setuser = "UPDATE users SET nextItemID = nextItemID+1 WHERE username = \"" . mysql_real_escape_string($username) . "\"";
129 $setuser2 = mysql_query($setuser); 135 $setuser2 = mysql_query($setuser);
130 136
131 $insitem = "INSERT INTO inbox (username, itemID, subscription, title, author, url, semantics) VALUES (\"" . mysql_real_escape_string($username) . "\", " . $itemID . ", \"" . mysql_real_escape_string($subscription) . "\", \"" . mysql_real_escape_string($title) . "\", \"" . mysql_real_escape_string($author) . "\", \"" . mysql_real_escape_string($url) . "\", \"" . mysql_real_escape_string(serialize($semantics)) . "\")"; 137 $insitem = "INSERT INTO inbox (username, itemID, subscription, title, author, url, semantics) VALUES (\"" . mysql_real_escape_string($username) . "\", " . $itemID . ", \"" . mysql_real_escape_string($subscription) . "\", \"" . mysql_real_escape_string($title) . "\", \"" . mysql_real_escape_string($author) . "\", \"" . mysql_real_escape_string($url) . "\", \"" . mysql_real_escape_string($semantics) . "\")";
132 $insitem2 = mysql_query($insitem); 138 $insitem2 = mysql_query($insitem);
133 139
134 instaDisc_sendItem($username, $itemID); 140 instaDisc_sendItem($username, $itemID);
diff --git a/central/trunk/xmlrpc.php b/central/trunk/xmlrpc.php index 3ffd1e1..5373f80 100644 --- a/central/trunk/xmlrpc.php +++ b/central/trunk/xmlrpc.php
@@ -102,7 +102,7 @@ function sendFromUpdate($username, $verification, $verificationID, $subscription
102 new xmlrpcval($title, 'string'), 102 new xmlrpcval($title, 'string'),
103 new xmlrpcval($author, 'string'), 103 new xmlrpcval($author, 'string'),
104 new xmlrpcval($url, 'string'), 104 new xmlrpcval($url, 'string'),
105 new xmlrpcval($semantics, 'array'), 105 new xmlrpcval($semantics, 'string'),
106 new xmlrpcval(instaDisc_getConfig('softwareVersion'), 'int'), 106 new xmlrpcval(instaDisc_getConfig('softwareVersion'), 'int'),
107 new xmlrpcval(instaDisc_getConfig('databaseVersion'), 'int'))); 107 new xmlrpcval(instaDisc_getConfig('databaseVersion'), 'int')));
108 $client->send($msg); 108 $client->send($msg);